From 6ca354bcfdda0c631a2a3ccb127cf60e23aa9098 Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Mon, 13 Sep 2021 19:13:38 +0200 Subject: [PATCH] remove dependency on std::filesystem --- common/lib/CMakeLists.txt | 4 ---- 1 file changed, 4 deletions(-) diff --git a/common/lib/CMakeLists.txt b/common/lib/CMakeLists.txt index 4aadf734e..18f8ebfc2 100644 --- a/common/lib/CMakeLists.txt +++ b/common/lib/CMakeLists.txt @@ -45,10 +45,6 @@ add_library(villas-common SHARED version.cpp ) -if(CMAKE_CXX_COMPILER_ID STREQUAL GNU) - target_link_libraries(villas-common PUBLIC "-lstdc++fs") -endif() - if(CMAKE_SYSTEM_PROCESSOR STREQUAL "x86_64") target_sources(villas-common PRIVATE tsc.cpp) endif()