mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-11 21:52:43 +02:00
15 lines
422 B
CMake
15 lines
422 B
CMake
# This is a windows only test
|
|
if(NOT WIN32)
|
|
return()
|
|
endif ()
|
|
|
|
set(TARGET_NAME gl-test)
|
|
# This is not a testcase -- just set it up as a regular hifi project
|
|
setup_hifi_project(Quick Gui OpenGL)
|
|
setup_memory_debugger()
|
|
setup_thread_debugger()
|
|
set_target_properties(${TARGET_NAME} PROPERTIES FOLDER "Tests/manual-tests/")
|
|
link_hifi_libraries(shared gl)
|
|
package_libraries_for_deployment()
|
|
target_nsight()
|
|
target_opengl()
|