source: trunk/test/Makefile.am @ 2294

Last change on this file since 2294 was 2294, checked in by touky, 10 years ago

Added MeshViewer new project, its goal being to have a program capable of previewing a mesh from an outer source (.txt, js, etc ...) in order to speed up mesh creation.
Added RadialJitter("rj") to EasyMesh parser.

File size: 1.9 KB
Line 
1
2include $(top_srcdir)/build/autotools/common.am
3
4SUBDIRS = math sandbox xolotl
5
6AM_CPPFLAGS = -I$(top_srcdir)/src
7
8bench: benchsuite$(EXEEXT)
9        ./benchsuite$(EXEEXT)
10
11EXTRA_DIST = data/gradient.png
12
13noinst_PROGRAMS = benchsuite $(testsuite) btphystest MeshViewer
14
15TESTS = $(testsuite)
16
17# Conditionally built for now because of STLport issues
18if !USE_ANDROID
19testsuite = testsuite
20endif
21
22testsuite_SOURCES = testsuite.cpp \
23    unit/vector.cpp unit/matrix.cpp unit/half.cpp unit/trig.cpp \
24    unit/build.cpp unit/real.cpp unit/image.cpp unit/quat.cpp unit/cmplx.cpp \
25    unit/array.cpp unit/rotation.cpp unit/string.cpp unit/map.cpp \
26    unit/color.cpp
27testsuite_CPPFLAGS = @LOL_CFLAGS@
28testsuite_LDFLAGS = $(top_builddir)/src/liblol.a @LOL_LIBS@
29testsuite_DEPENDENCIES = $(top_builddir)/src/liblol.a
30
31benchsuite_SOURCES = benchsuite.cpp \
32    benchmark/vector.cpp benchmark/half.cpp benchmark/trig.cpp \
33    benchmark/real.cpp
34benchsuite_CPPFLAGS = @LOL_CFLAGS@
35benchsuite_LDFLAGS = $(top_builddir)/src/liblol.a @LOL_LIBS@
36benchsuite_DEPENDENCIES = $(top_builddir)/src/liblol.a
37
38btphystest_SOURCES = BtPhysTest.cpp BtPhysTest.h PhysicObject.h \
39    Physics/Src/EasyPhysics.cpp Physics/Include/EasyPhysics.h \
40    Physics/Include/LolBtPhysicsIntegration.h Physics/Include/LolPhysics.h \
41    Physics/Src/EasyCharacterController.cpp \
42    Physics/Include/EasyCharacterController.h \
43    Physics/Src/EasyConstraint.cpp \
44    Physics/Include/EasyConstraint.h \
45    Physics/Src/BulletCharacterController.cpp \
46    Physics/Include/BulletCharacterController.h
47btphystest_CPPFLAGS = @LOL_CFLAGS@ -I$(top_srcdir)/src/bullet \
48    -DHAVE_PHYS_USE_BULLET
49btphystest_LDFLAGS = $(top_builddir)/src/liblol.a @LOL_LIBS@
50btphystest_DEPENDENCIES = $(top_builddir)/src/liblol.a
51
52MeshViewer_SOURCES = MeshViewer.cpp
53MeshViewer_CPPFLAGS = @LOL_CFLAGS@
54MeshViewer_LDFLAGS = $(top_builddir)/src/liblol.a @LOL_LIBS@
55MeshViewer_DEPENDENCIES = $(top_builddir)/src/liblol.a
56
Note: See TracBrowser for help on using the repository browser.