您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

56 行
1.7 KiB

  1. include $(top_srcdir)/build/autotools/common.am
  2. SUBDIRS = math meshviewer sandbox
  3. bench: benchsuite$(EXEEXT)
  4. ./benchsuite$(EXEEXT)
  5. if BUILD_SAMPLES
  6. noinst_PROGRAMS = bluenoise benchsuite simplex
  7. if LOL_USE_GL
  8. noinst_PROGRAMS += btphystest nacl_phystest
  9. endif
  10. endif
  11. bluenoise_SOURCES = bluenoise.cpp
  12. bluenoise_CPPFLAGS = $(AM_CPPFLAGS)
  13. bluenoise_DEPENDENCIES = @LOL_DEPS@
  14. benchsuite_SOURCES = benchsuite.cpp \
  15. benchmark/vector.cpp benchmark/half.cpp benchmark/trig.cpp \
  16. benchmark/real.cpp
  17. benchsuite_CPPFLAGS = $(AM_CPPFLAGS)
  18. benchsuite_DEPENDENCIES = @LOL_DEPS@
  19. btphystest_SOURCES = \
  20. btphystest.cpp btphystest.h physicobject.h \
  21. physics/easyphysics.cpp physics/easyphysics.h \
  22. physics/lolbtphysicsintegration.h physics/lolphysics.h \
  23. physics/easycharactercontroller.cpp physics/easycharactercontroller.h \
  24. physics/easyconstraint.cpp physics/easyconstraint.h \
  25. physics/bulletcharactercontroller.cpp physics/bulletcharactercontroller.h \
  26. \
  27. front_camera_sprite.lolfx
  28. btphystest_CPPFLAGS = $(AM_CPPFLAGS) -I$(top_srcdir)/src/3rdparty/bullet3/src \
  29. -DHAVE_PHYS_USE_BULLET
  30. btphystest_DEPENDENCIES = @LOL_DEPS@
  31. btphystest_LDFLAGS = $(AM_LDFLAGS)
  32. if LOL_USE_EMSCRIPTEN
  33. btphystest_LDFLAGS += \
  34. --preload-file data/CatsSheet.png \
  35. -s TOTAL_MEMORY=$(shell expr 32 '*' 1024 '*' 1024)
  36. endif
  37. nacl_phystest_SOURCES = \
  38. nacl_phystest.cpp nacl_phystest.h
  39. nacl_phystest_CPPFLAGS = $(AM_CPPFLAGS) -I$(top_srcdir)/src/3rdparty/bullet3/src \
  40. -DHAVE_PHYS_USE_BULLET
  41. nacl_phystest_DEPENDENCIES = @LOL_DEPS@
  42. nacl_phystest_LDFLAGS = $(AM_LDFLAGS)
  43. simplex_SOURCES = simplex.cpp
  44. simplex_CPPFLAGS = $(AM_CPPFLAGS)
  45. simplex_DEPENDENCIES = @LOL_DEPS@