From b3db4580910ec2448e300efa50dfc43dd9f97fc0 Mon Sep 17 00:00:00 2001 From: Dale Glass Date: Sun, 11 Apr 2021 23:00:46 +0200 Subject: [PATCH] Fix mismatched if in CMake warning This should have no actual effect, just a warning fix --- libraries/gpu-gl/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/gpu-gl/CMakeLists.txt b/libraries/gpu-gl/CMakeLists.txt index 3c569f7a44..de651e5116 100644 --- a/libraries/gpu-gl/CMakeLists.txt +++ b/libraries/gpu-gl/CMakeLists.txt @@ -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")