Fix mismatched if in CMake warning

This should have no actual effect, just a warning fix
This commit is contained in:
Dale Glass 2021-04-11 23:00:46 +02:00
parent 1dba5bedfa
commit b3db458091

View file

@ -3,7 +3,7 @@ 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)
endif(UNIX AND NOT VIRCADIA_THREAD_DEBUGGING)
GroupSources("src")
set(OpenGL_GL_PREFERENCE "LEGACY")