Commit cdaa5a8e authored by neverlord's avatar neverlord

automake fix

parent 87e30e5c
......@@ -8,6 +8,9 @@ test
*.ii
*.s
*.tmp
*.la
*.lo
.libs/
.deps/
Makefile.in
aclocal.m4
......@@ -18,6 +21,7 @@ libtool
ltmain.sh
missing
unit_testing/Makefile.in
unit_testing/unit_tests
unit_testing/.deps/
config.*
configure
......
......@@ -196,4 +196,5 @@ library_include_HEADERS = \
libcppa_la_CXXFLAGS = --std=c++0x -pedantic -Wall -Wextra
libcppa_la_LDFLAGS = -release 0.1 $(BOOST_CPPFLAGS)
SUBDIRS = unit_testing
SUBDIRS = . unit_testing
......@@ -20,4 +20,8 @@ unit_tests_SOURCES = hash_of.cpp \
test__type_list.cpp \
test__uniform_type.cpp
unit_tests_DEPENDENCIES = ../.libs/libcppa.dylib
AM_CPPFLAGS = -I../
unit_tests_CXXFLAGS = --std=c++0x -pedantic -Wall -Wextra
AM_LDFLAGS = $(BOOST_LDFLAGS) $(BOOST_THREAD_LIB) -L../.libs/ -lcppa
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment