From 41a0ab4a7f66fd2c9d82e5eadcbff3caf0e16f2a Mon Sep 17 00:00:00 2001 From: celie56 Date: Mon, 14 Nov 2022 16:54:44 -0500 Subject: [PATCH] Remove stdc++fs from CMakeLists.txt This was causing a link error on mac m1 Removing allowed the binary to be built --- CMakeLists.txt | 3 --- 1 file changed, 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ee1ee34..1aca238 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -187,9 +187,6 @@ if (EMSCRIPTEN) #set_target_properties(diagon PROPERTIES SUFFIX ".wasm") else() - target_link_libraries(diagon_lib PRIVATE -static-libstdc++) - target_link_libraries(diagon_lib PRIVATE stdc++fs) - install(TARGETS diagon RUNTIME DESTINATION "bin") add_executable(input_output_test src/input_output_test.cpp)