Makefile.am 807 B

12345678910111213141516171819202122232425262728293031
  1. SUBDIRS = UnitTest++
  2. AM_CPPFLAGS = -I $(srcdir)/UnitTest++/src \
  3. -I $(top_srcdir)/include \
  4. -I $(top_srcdir)/ode/src
  5. if GIMPACT
  6. AM_CPPFLAGS += -DdTRIMESH_ENABLED -DdTRIMESH_GIMPACT
  7. endif
  8. if OPCODE
  9. AM_CPPFLAGS += -DdTRIMESH_ENABLED -DdTRIMESH_OPCODE
  10. endif
  11. LDADD = $(builddir)/UnitTest++/src/libunittestpp.la \
  12. $(top_builddir)/ode/src/libode.la
  13. check_PROGRAMS = tests
  14. TESTS = tests
  15. tests_SOURCES = main.cpp joint.cpp odemath.cpp collision.cpp \
  16. joints/ball.cpp \
  17. joints/fixed.cpp \
  18. joints/hinge.cpp \
  19. joints/hinge2.cpp \
  20. joints/piston.cpp \
  21. joints/pr.cpp \
  22. joints/pu.cpp \
  23. joints/slider.cpp \
  24. joints/universal.cpp