12 lines
618 B
Makefile
12 lines
618 B
Makefile
if COMPILE_TESTS
|
|
noinst_PROGRAMS = testThread
|
|
INCLUDES = -I. -I$(top_srcdir)/PACC -I$(top_srcdir)/beagle/include -I$(top_srcdir)/beagle/GA/include -I$(top_srcdir)/beagle/GP/include
|
|
testThread_LDADD = $(top_srcdir)/PACC/Math/libpacc-math.la \
|
|
$(top_srcdir)/PACC/Threading/libpacc-threading.la \
|
|
$(top_srcdir)/PACC/Util/libpacc-util.la \
|
|
$(top_srcdir)/PACC/XML/libpacc-xml.la \
|
|
$(top_srcdir)/beagle/src/libbeagle.la \
|
|
$(top_srcdir)/beagle/GP/src/libbeagle-GP.la
|
|
testThread_SOURCES = TestThread.cpp
|
|
endif COMPILE_TESTS
|