mirror of
https://github.com/overte-org/overte.git
synced 2025-04-25 13:53:38 +02:00
14 lines
434 B
CMake
14 lines
434 B
CMake
|
|
set(TARGET_NAME render-utils-test)
|
|
|
|
# This is not a testcase -- just set it up as a regular hifi project
|
|
setup_hifi_project(Quick Gui OpenGL)
|
|
set_target_properties(${TARGET_NAME} PROPERTIES FOLDER "Tests/manual-tests/")
|
|
|
|
setup_memory_debugger()
|
|
|
|
# link in the shared libraries
|
|
link_hifi_libraries(render-utils gl gpu gpu-gl shared)
|
|
target_link_libraries(${TARGET_NAME} ${CMAKE_THREAD_LIBS_INIT})
|
|
|
|
package_libraries_for_deployment()
|