diff options
Diffstat (limited to 'cpp/test/Makefile.am')
| -rw-r--r-- | cpp/test/Makefile.am | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/cpp/test/Makefile.am b/cpp/test/Makefile.am new file mode 100644 index 0000000..a80f319 --- /dev/null +++ b/cpp/test/Makefile.am @@ -0,0 +1,26 @@ + +AM_LDFLAGS = ../libmsgpack.la -lgtest_main + +check_PROGRAMS = \ + zone \ + pack_unpack \ + streaming \ + object \ + convert \ + buffer + +TESTS = $(check_PROGRAMS) + +zone_SOURCES = zone.cc + +pack_unpack_SOURCES = pack_unpack.cc + +streaming_SOURCES = streaming.cc + +object_SOURCES = object.cc + +convert_SOURCES = convert.cc + +buffer_SOURCES = buffer.cc +buffer_LDADD = -lz + |
