CMakeLists.txt 367 B

1234567891011121314151617181920
  1. SET(includes
  2. .
  3. ${BULLET_PHYSICS_SOURCE_DIR}/examples/ThirdPartyLibs
  4. ${BULLET_PHYSICS_SOURCE_DIR}/src
  5. )
  6. LINK_LIBRARIES(
  7. Bullet3Common
  8. )
  9. INCLUDE_DIRECTORIES(${includes})
  10. ADD_EXECUTABLE(App_obj2sdf
  11. obj2sdf.cpp
  12. ../../examples/Utils/b3ResourcePath.cpp
  13. ../../examples/Utils/b3ResourcePath.h
  14. ../../examples/ThirdPartyLibs/Wavefront/tiny_obj_loader.cpp
  15. )