couch/thirdparty/CMakeLists.txt

20 lines
410 B
CMake
Raw Normal View History

project(Couch)
2021-01-18 18:25:47 -06:00
## STB (image)
2021-01-26 16:42:28 -06:00
target_include_directories(couchlib
PUBLIC stb)
2021-03-15 13:46:19 -05:00
## ASSIMP
add_subdirectory(assimp)
target_include_directories(couchlib
PUBLIC
assimp/include)
target_link_libraries(couchlib assimp::assimp)
2021-03-15 17:11:19 -05:00
## Bullet
add_subdirectory(bullet)
target_include_directories(couchlib
PUBLIC
bullet/src)
target_link_libraries(couchlib LinearMath Bullet3Common BulletCollision BulletDynamics)