overte-lubosz/tools/vhacd/CMakeLists.txt
Virendra Singh ddd137ed60 cmake changes for vhacd
cmake changes to create a new project vhacd as a seperate executable in
tools directory
2015-02-21 15:39:16 +05:30

13 lines
No EOL
428 B
CMake

set(TARGET_NAME vhacd)
setup_hifi_project()
link_hifi_libraries(shared model fbx gpu networking octree)
find_package(VHACD REQUIRED)
target_include_directories(${TARGET_NAME} PUBLIC ${VHACD_INCLUDE_DIRS})
target_link_libraries(${TARGET_NAME} ${VHACD_LIBRARIES})
add_dependency_external_project(glm)
find_package(GLM REQUIRED)
target_include_directories(${TARGET_NAME} PUBLIC ${GLM_INCLUDE_DIRS})
include_dependency_includes()