1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-06-27 16:36:03 +00:00

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
This commit is contained in:
adrido 2018-10-26 21:37:51 +02:00 committed by SmallJoker
parent 45b52f6d5a
commit 2322078fe4
8 changed files with 118 additions and 33 deletions

View file

@ -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)

View file

@ -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)