-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.am
More file actions
49 lines (33 loc) · 804 Bytes
/
Makefile.am
File metadata and controls
49 lines (33 loc) · 804 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
EXTRA_DIST = \
bootstrap \
COPYING.APLv2 \
COPYING.GPLv3 \
COPYING.MIT
AM_CPPFLAGS = \
-I$(srcdir)/include
AM_CXXFLAGS = -Wall -Wextra -Werror
LDADD = lib/libutf-cpp.la
utf_cppdir = include/utf-cpp
utf_cpp_HEADERS = \
include/utf-cpp/code_point_iterator.hpp \
include/utf-cpp/concepts.hpp \
include/utf-cpp/decode.hpp \
include/utf-cpp/error.hpp \
include/utf-cpp/to_string.hpp \
include/utf-cpp/to_utf16.hpp \
include/utf-cpp/to_utf32.hpp \
include/utf-cpp/to_utf8.hpp \
include/utf-cpp/traits.hpp
lib_LTLIBRARIES = lib/libutf-cpp.la
lib_libutf_cpp_la_SOURCES = \
src/error.cpp \
src/decode.cpp \
src/to_utf8.cpp \
src/to_string.cpp \
src/to_utf16.cpp \
src/to_utf32.cpp
if BUILD_TEST
noinst_PROGRAMS = test/test
test_test_SOURCES = \
test/main.cpp
endif BUILD_TEST