mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-05 17:29:16 +02:00
This is enabled with the VIRCADIA_THREAD_DEBUGGING environment variable. It's incompatible with VIRCADIA_MEMORY_DEBUGGING, so only one of those can be enabled for a build.
11 lines
291 B
CMake
11 lines
291 B
CMake
set(TARGET_NAME gpu-gl)
|
|
setup_hifi_library(Concurrent)
|
|
link_hifi_libraries(shared gl gpu gpu-gl-common shaders)
|
|
if (UNIX AND NOT VIRCADIA_THREAD_DEBUGGING)
|
|
target_link_libraries(${TARGET_NAME} pthread)
|
|
endif(UNIX)
|
|
GroupSources("src")
|
|
|
|
set(OpenGL_GL_PREFERENCE "LEGACY")
|
|
target_opengl()
|
|
|