Makefile.am 714 B

12345678910111213141516171819202122232425262728293031323334353637383940
  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. if ENABLE_OU
  13. AM_CPPFLAGS += -I$(top_srcdir)/ou/include
  14. endif
  15. check_PROGRAMS = tests
  16. TESTS = tests
  17. tests_SOURCES = \
  18. collision.cpp \
  19. friction.cpp \
  20. joint.cpp \
  21. main.cpp \
  22. odemath.cpp
  23. tests_LDADD = \
  24. $(top_builddir)/ode/src/libode.la \
  25. joints/*.o \
  26. UnitTest++/src/libunittestpp.la