blob: 2be2e225da87020f1621d8ae1a9a5213f03a26ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
EXTRA_DIST = DllPlugInTester.dsp \
DllPlugInTesterTest.dsp \
DllPlugInTester.vcproj \
DllPlugInTester.vcxproj
INCLUDES = -I$(top_builddir)/include -I$(top_srcdir)/include
bin_PROGRAMS=DllPlugInTester
TESTS = DllPlugInTesterTest
check_PROGRAMS = $(TESTS)
DllPlugInTester_SOURCES= DllPlugInTester.cpp \
CommandLineParser.h \
CommandLineParser.cpp
DllPlugInTester_LDADD= \
$(top_builddir)/src/cppunit/libcppunit.la \
$(LIBADD_DL)
DllPlugInTesterTest_SOURCES = DllPlugInTesterTest.cpp \
CommandLineParser.cpp \
CommandLineParser.h \
CommandLineParserTest.cpp \
CommandLineParserTest.h
DllPlugInTesterTest_LDADD= \
$(top_builddir)/src/cppunit/libcppunit.la \
$(LIBADD_DL)
|