mirror of
https://github.com/overte-org/overte.git
synced 2025-06-19 01:01:10 +02:00
Fix mismatched if in CMake warning
This should have no actual effect, just a warning fix
This commit is contained in:
parent
1dba5bedfa
commit
b3db458091
1 changed files with 1 additions and 1 deletions
|
@ -3,7 +3,7 @@ setup_hifi_library(Concurrent)
|
||||||
link_hifi_libraries(shared gl gpu gpu-gl-common shaders)
|
link_hifi_libraries(shared gl gpu gpu-gl-common shaders)
|
||||||
if (UNIX AND NOT VIRCADIA_THREAD_DEBUGGING)
|
if (UNIX AND NOT VIRCADIA_THREAD_DEBUGGING)
|
||||||
target_link_libraries(${TARGET_NAME} pthread)
|
target_link_libraries(${TARGET_NAME} pthread)
|
||||||
endif(UNIX)
|
endif(UNIX AND NOT VIRCADIA_THREAD_DEBUGGING)
|
||||||
GroupSources("src")
|
GroupSources("src")
|
||||||
|
|
||||||
set(OpenGL_GL_PREFERENCE "LEGACY")
|
set(OpenGL_GL_PREFERENCE "LEGACY")
|
||||||
|
|
Loading…
Reference in a new issue