summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authoradrido <robots_only_adrido@gmx.com>2018-10-26 21:37:51 +0200
committerSmallJoker <SmallJoker@users.noreply.github.com>2018-10-26 21:37:51 +0200
commit2322078fe480a338422b35ee29fee3c0767f3e1d (patch)
tree3c935142cc66f0f237d8a6211ae09075fab62bab /lib
parent45b52f6d5a7c8389da8f4cb5c5294a430255a248 (diff)
downloadminetest-2322078fe480a338422b35ee29fee3c0767f3e1d.tar.gz
minetest-2322078fe480a338422b35ee29fee3c0767f3e1d.tar.bz2
minetest-2322078fe480a338422b35ee29fee3c0767f3e1d.zip
Windows: Cpack wix installer (#6153)
Create CPack WIX msi Installer for RUN_IN_PLACE=0 builds Correct paths on Windows for RUN_IN_PLACE=0 Install only required font files Games have their own components, and "minimal" is optional
Diffstat (limited to 'lib')
-rw-r--r--lib/gmp/CMakeLists.txt4
-rw-r--r--lib/jsoncpp/CMakeLists.txt4
2 files changed, 0 insertions, 8 deletions
diff --git a/lib/gmp/CMakeLists.txt b/lib/gmp/CMakeLists.txt
index 96ae8191d..884c4d389 100644
--- a/lib/gmp/CMakeLists.txt
+++ b/lib/gmp/CMakeLists.txt
@@ -1,7 +1,3 @@
-if(MSVC)
- set(CMAKE_C_FLAGS_RELEASE "/MT /O2 /Ob2 /D NDEBUG")
-endif()
-
add_library(gmp mini-gmp.c)
target_link_libraries(gmp)
diff --git a/lib/jsoncpp/CMakeLists.txt b/lib/jsoncpp/CMakeLists.txt
index 9056e4b6d..0531712ae 100644
--- a/lib/jsoncpp/CMakeLists.txt
+++ b/lib/jsoncpp/CMakeLists.txt
@@ -1,7 +1,3 @@
-if(MSVC)
- set(CMAKE_CXX_FLAGS_RELEASE "/MT /O2 /Ob2 /D NDEBUG")
-endif()
-
add_library(jsoncpp jsoncpp.cpp)
target_link_libraries(jsoncpp)