Makefile.am 654 B

123456789101112131415161718192021222324252627282930
  1. SUBDIRS = joints UnitTest++
  2. AM_CPPFLAGS = -I$(srcdir)/UnitTest++/src \
  3. -I$(top_srcdir)/include \
  4. -I$(top_builddir)/include \
  5. -I$(top_srcdir)/ode/src
  6. if GIMPACT
  7. AM_CPPFLAGS += -DdTRIMESH_ENABLED -DdTRIMESH_GIMPACT
  8. endif
  9. if OPCODE
  10. AM_CPPFLAGS += -DdTRIMESH_ENABLED -DdTRIMESH_OPCODE
  11. endif
  12. check_PROGRAMS = tests
  13. TESTS = tests
  14. tests_SOURCES = \
  15. collision.cpp \
  16. friction.cpp \
  17. joint.cpp \
  18. main.cpp \
  19. odemath.cpp
  20. tests_LDADD = \
  21. $(top_builddir)/ode/src/libode.la \
  22. joints/*.o \
  23. UnitTest++/src/libunittestpp.la