blob: 7ed86203abfc9757663169d0009fa19a17b5c7c7 (
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
30
|
SUBDIRS = joints UnitTest++
AM_CPPFLAGS = -I$(srcdir)/UnitTest++/src \
-I$(top_srcdir)/include \
-I$(top_builddir)/include \
-I$(top_srcdir)/ode/src
if GIMPACT
AM_CPPFLAGS += -DdTRIMESH_ENABLED -DdTRIMESH_GIMPACT
endif
if OPCODE
AM_CPPFLAGS += -DdTRIMESH_ENABLED -DdTRIMESH_OPCODE
endif
check_PROGRAMS = tests
TESTS = tests
tests_SOURCES = \
collision.cpp \
friction.cpp \
joint.cpp \
main.cpp \
odemath.cpp
tests_LDADD = \
$(top_builddir)/ode/src/libode.la \
joints/*.o \
UnitTest++/src/libunittestpp.la
|