mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-23 07:06:23 +01:00
20 lines
438 B
Text
20 lines
438 B
Text
|
|
if AUTOTESTS
|
||
|
|
|
||
|
|
# build automated 'tests'
|
||
|
|
noinst_PROGRAMS = test-context
|
||
|
|
test_context_SOURCES=test-context.cc
|
||
|
|
TESTS=test-context
|
||
|
|
|
||
|
|
else
|
||
|
|
|
||
|
|
#don't build anything
|
||
|
|
TESTS=
|
||
|
|
|
||
|
|
endif
|
||
|
|
|
||
|
|
#Where to find the header files needed by the source files:
|
||
|
|
INCLUDES = -I$(top_srcdir) @CAIROMM_CFLAGS@
|
||
|
|
|
||
|
|
#The libraries that the executable needs to link against:
|
||
|
|
LIBS = $(top_builddir)/cairomm/libcairomm-1.0.la @LIBS@ @CAIROMM_LIBS@ @BOOST_UNIT_TEST_FRAMEWORK_LIB@
|