Skip to content
Snippets Groups Projects
Commit 1f0cd2af authored by Lars Bilke's avatar Lars Bilke
Browse files

[cmake] Remove linking to std::filesystem.

parent 3988bf5b
No related branches found
No related tags found
No related merge requests found
...@@ -32,7 +32,7 @@ target_link_libraries( ...@@ -32,7 +32,7 @@ target_link_libraries(
$<$<BOOL:${OGS_BUILD_GUI}>:QtBase> $<$<BOOL:${OGS_BUILD_GUI}>:QtBase>
$<$<TARGET_EXISTS:shp>:shp> $<$<TARGET_EXISTS:shp>:shp>
$<$<TARGET_EXISTS:SwmmInterface>:SwmmInterface> $<$<TARGET_EXISTS:SwmmInterface>:SwmmInterface>
PRIVATE MeshLib GitInfoLib std::filesystem PRIVATE MeshLib GitInfoLib
) )
configure_file( configure_file(
......
...@@ -12,7 +12,6 @@ target_link_libraries( ...@@ -12,7 +12,6 @@ target_link_libraries(
BaseLib BaseLib
PUBLIC Boost::boost PUBLIC Boost::boost
spdlog::spdlog spdlog::spdlog
std::filesystem
tclap tclap
$<$<BOOL:${MSVC}>:WinMM> # needed for timeGetTime $<$<BOOL:${MSVC}>:WinMM> # needed for timeGetTime
$<$<BOOL:${OGS_BUILD_GUI}>:Qt5::Xml> $<$<BOOL:${OGS_BUILD_GUI}>:Qt5::Xml>
......
ogs_add_executable(xdmfdiff xdmfdiff.cpp) ogs_add_executable(xdmfdiff xdmfdiff.cpp)
target_link_libraries(xdmfdiff OgsXdmf GitInfoLib std::filesystem tclap) target_link_libraries(xdmfdiff OgsXdmf GitInfoLib tclap)
install(PROGRAMS $<TARGET_FILE:xdmfdiff> DESTINATION bin) install(PROGRAMS $<TARGET_FILE:xdmfdiff> DESTINATION bin)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment