mirror of
https://github.com/overte-org/overte.git
synced 2025-08-07 13:10:34 +02:00
13 lines
414 B
CMake
Executable file
13 lines
414 B
CMake
Executable file
set(TARGET_NAME model)
|
|
|
|
# use setup_hifi_library macro to setup our project and link appropriate Qt modules
|
|
setup_hifi_library()
|
|
|
|
add_dependency_external_project(glm)
|
|
find_package(GLM REQUIRED)
|
|
target_include_directories(${TARGET_NAME} PUBLIC ${GLM_INCLUDE_DIRS})
|
|
|
|
link_hifi_libraries(shared gpu)
|
|
|
|
# call macro to link our dependencies and bubble them up via a property on our target
|
|
include_dependency_includes()
|