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.
2 parents 4d36035 + 9aef6c8 commit f8bfb74Copy full SHA for f8bfb74
CMakeLists.txt
@@ -69,6 +69,14 @@ if ((NOT MSVC) OR (CMAKE_BUILD_TOOL STREQUAL "nmake"))
69
immutable" FORCE )
70
endif((NOT MSVC) OR (CMAKE_BUILD_TOOL STREQUAL "nmake"))
71
72
+# Mingw64 needs MS_WIN64 to be defined (otherwise link failures)
73
+if(MINGW)
74
+ message(STATUS "MinGW:")
75
+ if(BIT MATCHES "64")
76
+ add_definitions(-DMS_WIN64)
77
+ endif(BIT MATCHES "64")
78
+endif(MINGW)
79
+
80
########
81
# SWIG #
82
0 commit comments