icinga2/test/Makefile.am

24 lines
459 B
Makefile
Raw Normal View History

2012-05-28 11:53:51 +02:00
## Process this file with automake to produce Makefile.in
TESTS = \
icinga2_test
2012-05-28 11:53:51 +02:00
check_PROGRAMS = \
icinga2_test
2012-05-28 11:53:51 +02:00
icinga2_test_SOURCES = \
test.cpp \
2012-05-28 11:53:51 +02:00
base-dictionary.cpp
icinga2_test_CPPFLAGS = \
2012-05-28 11:53:51 +02:00
$(BOOST_CPPFLAGS) \
2012-09-14 11:41:15 +02:00
-I${top_srcdir}/lib/base \
-I${top_srcdir}/lib/icinga \
2012-05-28 11:53:51 +02:00
-I${top_srcdir}
icinga2_test_LDADD = \
2012-05-28 11:53:51 +02:00
$(BOOST_LDFLAGS) \
$(BOOST_UNIT_TEST_FRAMEWORK_LIB) \
2012-09-14 11:41:15 +02:00
${top_builddir}/lib/base/libbase.la \
${top_builddir}/lib/icinga/libicinga.la