From 8ab297d9a7758832bd63ad634d2284f134a79b78 Mon Sep 17 00:00:00 2001 From: Tobias Frisch <tfrisch@uni-koblenz.de> Date: Tue, 13 Jul 2021 00:41:49 +0200 Subject: [PATCH] [#86] Removed linking stdc++fs in the first place with Clang.. lol Signed-off-by: Tobias Frisch <tfrisch@uni-koblenz.de> --- CMakeLists.txt | 1 - config/Libraries.cmake | 2 -- 2 files changed, 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index bd0a983e..dfafe1cd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -13,7 +13,6 @@ endif() message("-- Language: [ C++ " ${CMAKE_CXX_STANDARD} " ]") message("-- Compiler: [ " ${CMAKE_CXX_COMPILER_ID} " " ${CMAKE_CXX_COMPILER_VERSION} " ]") -message("-- Linker: [ " ${CMAKE_LINKER} " " ${CMAKE_CXX_LINK_EXECUTABLE} " ]") if ((CMAKE_CXX_COMPILER_ID STREQUAL "GNU") AND (CMAKE_CXX_COMPILER_VERSION VERSION_LESS "9.0.0")) message(FATAL_ERROR "Upgrade your compiler! GCC 9.0+ is required!") diff --git a/config/Libraries.cmake b/config/Libraries.cmake index da0f3e0c..681f4276 100644 --- a/config/Libraries.cmake +++ b/config/Libraries.cmake @@ -5,8 +5,6 @@ set(vkcv_lib_path ${PROJECT_SOURCE_DIR}/${vkcv_lib}) if(NOT WIN32) if (CMAKE_CXX_COMPILER_ID STREQUAL "GNU") set(vkcv_libraries stdc++fs) - else() - set(vkcv_libraries c++fs) endif() if (CMAKE_CXX_COMPILER_ID STREQUAL "AppleClang") -- GitLab