mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-05-08 04:29:57 +02:00
15 lines
No EOL
516 B
CMake
15 lines
No EOL
516 B
CMake
set(TARGET_NAME render-utils)
|
|
|
|
AUTOSCRIBE_SHADER_LIB(gpu model)
|
|
|
|
# pull in the resources.qrc file
|
|
qt5_add_resources(QT_RESOURCES_FILE "${CMAKE_CURRENT_SOURCE_DIR}/res/fonts/fonts.qrc")
|
|
|
|
# use setup_hifi_library macro to setup our project and link appropriate Qt modules
|
|
setup_hifi_library(Widgets OpenGL Network Script)
|
|
|
|
add_dependency_external_projects(glm)
|
|
find_package(GLM REQUIRED)
|
|
target_include_directories(${TARGET_NAME} PUBLIC ${GLM_INCLUDE_DIRS})
|
|
|
|
link_hifi_libraries(animation fbx shared gpu) |