From 404fc3f9bf37ab9e5ea0f831de7692e1b69c7320 Mon Sep 17 00:00:00 2001 From: Alexander Bock Date: Mon, 31 May 2021 15:46:05 +0200 Subject: [PATCH] Fix issue with not being able to include sgct anymore with Visual Studio 16.10 --- apps/OpenSpace/CMakeLists.txt | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/apps/OpenSpace/CMakeLists.txt b/apps/OpenSpace/CMakeLists.txt index 7622653bf6..c43e141b3f 100644 --- a/apps/OpenSpace/CMakeLists.txt +++ b/apps/OpenSpace/CMakeLists.txt @@ -116,13 +116,13 @@ add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/ext/sgct) target_link_libraries(OpenSpace PRIVATE sgct) set_folder_location(sgct "External") -set_folder_location(glfw "External/SGCT") -set_folder_location(miniziplibstatic "External/SGCT") -set_folder_location(png16_static "External/SGCT") -set_folder_location(quat "External/SGCT") -set_folder_location(tinyxml2static "External/SGCT") -set_folder_location(vrpn "External/SGCT") -set_folder_location(zlibstatic "External/SGCT") +set_folder_location(glfw "External") +set_folder_location(miniziplibstatic "External") +set_folder_location(png16_static "External") +set_folder_location(quat "External") +set_folder_location(tinyxml2static "External") +set_folder_location(vrpn "External") +set_folder_location(zlibstatic "External") if (UNIX AND (NOT APPLE)) target_link_libraries(OpenSpace PRIVATE Xcursor Xinerama X11)