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 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118
|
noinst_PROGRAMS = \
alltests \
foo \
logbench \
serializer-bench \
rpcbenchclient \
rpcbenchasyncclient \
rpcbenchserver
noinst_HEADERS = \
color.h
AM_CPPFLAGS = -I$(top_srcdir)/src -I$(top_builddir)/include -I$(top_srcdir)/include
alltests_SOURCES = \
arg-test.cpp \
base64-test.cpp \
binrpc-test.cpp \
binserializer-test.cpp \
cache-test.cpp \
clock-test.cpp \
csvdeserializer-test.cpp \
csvserializer-test.cpp \
convert-test.cpp \
date-test.cpp \
datetime-test.cpp \
envsubst-test.cpp \
eventloop-test.cpp \
file-test.cpp \
inifile-test.cpp \
iniparser-test.cpp \
iniserialization-test.cpp \
iso8859_1-test.cpp \
iso8859_15-test.cpp \
join-test.cpp \
json-test.cpp \
jsondeserializer-test.cpp \
jsonrpc-test.cpp \
jsonrpchttp-test.cpp \
jsonserializer-test.cpp \
limitstream-test.cpp \
logconfiguration-test.cpp \
lrucache-test.cpp \
mime-test.cpp \
md5-test.cpp \
pool-test.cpp \
properties-test.cpp \
propertiesserializer-test.cpp \
ptrstream-test.cpp \
query_params-test.cpp \
quotedprintable-test.cpp \
regex-test.cpp \
scopedincrement-test.cpp \
serialization-test.cpp \
serializationinfo-test.cpp \
smartptr-test.cpp \
split-test.cpp \
string-test.cpp \
test-main.cpp \
time-test.cpp \
timespan-test.cpp \
trim-test.cpp \
tz-test.cpp \
utf8-test.cpp \
uri-test.cpp \
win1252-test.cpp \
xmlreader-test.cpp \
xmlrpc-test.cpp \
xmlrpccallback-test.cpp \
xmldeserializer-test.cpp \
xmlserializer-test.cpp
if MAKE_ICONVSTREAM
alltests_SOURCES += \
iconvstream-test.cpp
endif
logbench_SOURCES = logbench.cpp
logbench_LDADD = $(top_builddir)/src/libcxxtools.la
alltests_LDADD = $(top_builddir)/src/libcxxtools.la \
$(top_builddir)/src/bin/libcxxtools-bin.la \
$(top_builddir)/src/http/libcxxtools-http.la \
$(top_builddir)/src/json/libcxxtools-json.la \
$(top_builddir)/src/unit/libcxxtools-unit.la \
$(top_builddir)/src/xmlrpc/libcxxtools-xmlrpc.la
serializer_bench_SOURCES = serializer-bench.cpp
serializer_bench_LDADD = $(top_builddir)/src/libcxxtools.la \
$(top_builddir)/src/bin/libcxxtools-bin.la
rpcbenchclient_SOURCES = rpcbenchclient.cpp
rpcbenchasyncclient_SOURCES = rpcbenchasyncclient.cpp
rpcbenchclient_LDADD = $(top_builddir)/src/libcxxtools.la \
$(top_builddir)/src/http/libcxxtools-http.la \
$(top_builddir)/src/xmlrpc/libcxxtools-xmlrpc.la \
$(top_builddir)/src/bin/libcxxtools-bin.la \
$(top_builddir)/src/json/libcxxtools-json.la
rpcbenchasyncclient_LDADD = $(top_builddir)/src/libcxxtools.la \
$(top_builddir)/src/http/libcxxtools-http.la \
$(top_builddir)/src/xmlrpc/libcxxtools-xmlrpc.la \
$(top_builddir)/src/bin/libcxxtools-bin.la \
$(top_builddir)/src/json/libcxxtools-json.la
rpcbenchserver_SOURCES = rpcbenchserver.cpp
rpcbenchserver_LDADD = $(top_builddir)/src/libcxxtools.la \
$(top_builddir)/src/http/libcxxtools-http.la \
$(top_builddir)/src/xmlrpc/libcxxtools-xmlrpc.la \
$(top_builddir)/src/bin/libcxxtools-bin.la \
$(top_builddir)/src/json/libcxxtools-json.la
foo_SOURCES = foo.cpp
foo_LDADD = $(top_builddir)/src/libcxxtools.la
|