mirror of
https://github.com/overte-org/overte.git
synced 2025-04-14 07:47:30 +02:00
13 lines
373 B
CMake
13 lines
373 B
CMake
set(TARGET_NAME ui)
|
|
|
|
# use setup_hifi_library macro to setup our project and link appropriate Qt modules
|
|
setup_hifi_library(OpenGL Network Qml Quick Script XmlPatterns)
|
|
|
|
link_hifi_libraries(render-utils shared)
|
|
|
|
add_dependency_external_projects(glm)
|
|
find_package(GLM REQUIRED)
|
|
|
|
setup_memory_debugger()
|
|
|
|
target_include_directories(${TARGET_NAME} PUBLIC ${GLM_INCLUDE_DIRS})
|