From e578331001085c924610bcf585d59be57ea2877f Mon Sep 17 00:00:00 2001 From: Deukhoofd Date: Sat, 11 Jul 2020 14:06:33 +0200 Subject: [PATCH] Dont use mingw linker --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 74b83ed..88f2210 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -18,7 +18,7 @@ add_library(Arbutils ${LIBTYPE} ${SRC_FILES}) if (WINDOWS) MESSAGE(WARNING, "Using Windows Build.") - set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -m64 -Wa,-mbig-obj -pthread -wc-use-mingw-linker") + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -m64 -Wa,-mbig-obj -pthread") set_target_properties(Arbutils PROPERTIES SUFFIX ".dll") endif (WINDOWS)