diff options
author | Petr Mrázek <peterix@gmail.com> | 2013-12-17 00:37:56 +0100 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2013-12-17 00:37:56 +0100 |
commit | f8067a60346207d4b9b9f0c0eb5b1c3a70e28485 (patch) | |
tree | b92aaa6d70543dfa15852231fff4423ed3ea53a2 /mmc_updater/CMakeLists.txt | |
parent | be8dba9ee2573062dc689041874bade27504f045 (diff) | |
download | MultiMC-f8067a60346207d4b9b9f0c0eb5b1c3a70e28485.tar MultiMC-f8067a60346207d4b9b9f0c0eb5b1c3a70e28485.tar.gz MultiMC-f8067a60346207d4b9b9f0c0eb5b1c3a70e28485.tar.lz MultiMC-f8067a60346207d4b9b9f0c0eb5b1c3a70e28485.tar.xz MultiMC-f8067a60346207d4b9b9f0c0eb5b1c3a70e28485.zip |
Magical pixie dust for windows updater reliability
Don't ask.
Diffstat (limited to 'mmc_updater/CMakeLists.txt')
-rw-r--r-- | mmc_updater/CMakeLists.txt | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/mmc_updater/CMakeLists.txt b/mmc_updater/CMakeLists.txt index 61c8cd09..971ac153 100644 --- a/mmc_updater/CMakeLists.txt +++ b/mmc_updater/CMakeLists.txt @@ -9,6 +9,14 @@ include_directories(depends) if (WIN32) include_directories(depends/win32cpp) + # static all the things. The updater must have no dependencies, or it will fail. + if (MINGW) + set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -static-libgcc -static") + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -static-libgcc -static-libstdc++ -static") +#set(CMAKE_SHARED_LIBRARY_LINK_C_FLAGS "${CMAKE_SHARED_LIBRARY_LINK_C_FLAGS} -static-libgcc -s") +#set(CMAKE_SHARED_LIBRARY_LINK_CXX_FLAGS "${CMAKE_SHARED_LIBRARY_LINK_CXX_FLAGS} -static-libgcc -static-libstdc++ -s") + endif() + if(MSVC) # - Link the updater binary statically with the Visual C++ runtime # so that the executable can function standalone. |