diff options
| author | Kazuki Ohta <kzk@il.is.s.u-tokyo.ac.jp> | 2010-01-21 21:55:06 +0900 |
|---|---|---|
| committer | Kazuki Ohta <kzk@il.is.s.u-tokyo.ac.jp> | 2010-01-21 21:55:06 +0900 |
| commit | 404a3933154dc57b2e650cdabb51f80e4aeb1dbe (patch) | |
| tree | 057b31acf321747ecd5ddd13ea8e6427d145f935 /cpp/Makefile.am | |
| parent | c69092e110b82f4a6b37759a37cd43dbe8e486ed (diff) | |
| download | msgpack-python-404a3933154dc57b2e650cdabb51f80e4aeb1dbe.tar.gz | |
c, cpp: fix test problem
- using LDADD instead of LDFLAGS
- fix include path in test.cpp
Diffstat (limited to 'cpp/Makefile.am')
| -rw-r--r-- | cpp/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/Makefile.am b/cpp/Makefile.am index 99f4a32..d4de161 100644 --- a/cpp/Makefile.am +++ b/cpp/Makefile.am @@ -39,6 +39,6 @@ check_PROGRAMS = \ msgpack_test_SOURCES = test.cpp msgpack_test_CXXFLAGS = -I$(top_srcdir) -I$(top_srcdir)/c -I$(top_srcdir)/cpp -msgpack_test_LDFLAGS = libmsgpack.la -lgtest_main +msgpack_test_LDADD = libmsgpack.la -lgtest_main TESTS = $(check_PROGRAMS) |
