diff options
author | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2016-12-04 20:33:19 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-04 20:33:19 -0800 |
commit | 100f5f41315aeb518250ca0603c64d797ddbc64e (patch) | |
tree | 15078aafffe4aed23006b61e713c1483d256989a | |
parent | 5234f2d287e93509a84a064a4655281cdb528d88 (diff) | |
parent | 61687840bcc40b641f9130adcae5a36d4f570391 (diff) |
Merge pull request #2200 from j-selby/fix-mingw-crash
Disable Microprofile on Mingw builds
-rw-r--r-- | CMakeLists.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 33d18f5ea..25631b32e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -71,6 +71,9 @@ if (NOT MSVC) if (MINGW) add_definitions(-DMINGW_HAS_SECURE_API) + # Microprofile causes crashes when launching titles on MinGW + add_definitions(-DMICROPROFILE_ENABLED=0) + if (MINGW_STATIC_BUILD) add_definitions(-DQT_STATICPLUGIN) set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -static") |