bullet3/Extras/obj2sdf/CMakeLists.txt
Erwin Coumans 34fc2fb589 create premake/cmake file for Bullet/Extras/obj2sdf
add missing 1.sdf for Bullet/data/kitchens/1.sdf
add support for getting keyboard events (pybullet.getKeyboardEvents and b3RobotSimulatorClientAPI::getKeyboardEvents)
2017-03-02 12:33:22 -08:00

21 lines
367 B
CMake

SET(includes
.
${BULLET_PHYSICS_SOURCE_DIR}/examples/ThirdPartyLibs
${BULLET_PHYSICS_SOURCE_DIR}/src
)
LINK_LIBRARIES(
Bullet3Common
)
INCLUDE_DIRECTORIES(${includes})
ADD_EXECUTABLE(App_obj2sdf
obj2sdf.cpp
../../examples/Utils/b3ResourcePath.cpp
../../examples/Utils/b3ResourcePath.h
../../examples/ThirdPartyLibs/Wavefront/tiny_obj_loader.cpp
)