mirror of
https://github.com/overte-org/overte.git
synced 2025-04-29 21:02:44 +02:00
14 lines
421 B
CMake
14 lines
421 B
CMake
set(TARGET_NAME controllers)
|
|
|
|
# set a default root dir for each of our optional externals if it was not passed
|
|
setup_hifi_library(Script)
|
|
|
|
# use setup_hifi_library macro to setup our project and link appropriate Qt modules
|
|
link_hifi_libraries(shared)
|
|
|
|
GroupSources("src/controllers")
|
|
|
|
add_dependency_external_projects(glm)
|
|
find_package(GLM REQUIRED)
|
|
target_include_directories(${TARGET_NAME} PUBLIC ${GLM_INCLUDE_DIRS})
|
|
|