We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7bf5843 commit 8997ff0Copy full SHA for 8997ff0
CMakeLists.txt
@@ -10,12 +10,6 @@ set(CMAKE_SUPPRESS_REGENERATION true)
10
option(DASHER_HAVE_OWN_FILEUTILS "Set to true if you provide your own FileUtils implementation" OFF)
11
if(${DASHER_HAVE_OWN_FILEUTILS})
12
add_compile_definitions(HAVE_OWN_FILEUTILS)
13
-elseif(NOT(WIN32))
14
- if("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang")
15
- link_libraries(c++fs) #needed for std::filesystem with clang
16
- elseif (CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
17
- link_libraries(stdc++fs) #needed for std::filesystem with gcc
18
- endif()
19
endif()
20
21
###############################
0 commit comments