mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-05-09 07:48:20 +02:00
10 lines
No EOL
319 B
CMake
10 lines
No EOL
319 B
CMake
set(TARGET_NAME fbx)
|
|
|
|
# use setup_hifi_library macro to setup our project and link appropriate Qt modules
|
|
setup_hifi_library()
|
|
|
|
add_dependency_external_projects(glm)
|
|
find_package(GLM REQUIRED)
|
|
target_include_directories(${TARGET_NAME} PUBLIC ${GLM_INCLUDE_DIRS})
|
|
|
|
link_hifi_libraries(shared gpu model networking octree) |