diff options
author | Nils Gladitz <nilsgladitz@gmail.com> | 2016-02-07 19:25:56 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2016-02-09 15:28:57 (GMT) |
commit | a12b0f1b193024b71583b9150aeead33d364d189 (patch) | |
tree | f94b0230c6bfdb8e72b1572877fcadcb0d6d2a72 /Utilities/Release/WiX/CustomAction/CMakeLists.txt | |
parent | a5a5a6857241c21d306661d723b749839f4c6e1a (diff) | |
download | CMake-a12b0f1b193024b71583b9150aeead33d364d189.zip CMake-a12b0f1b193024b71583b9150aeead33d364d189.tar.gz CMake-a12b0f1b193024b71583b9150aeead33d364d189.tar.bz2 |
CMake: Prevent WiX installations over existing NSIS installations
Use a custom action to look for Uninstall.exe in the user
selected installation prefix.
Its presence indicates a previous NSIS installation.
Inform the user and request manual resolution of the issue.
Diffstat (limited to 'Utilities/Release/WiX/CustomAction/CMakeLists.txt')
-rw-r--r-- | Utilities/Release/WiX/CustomAction/CMakeLists.txt | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Utilities/Release/WiX/CustomAction/CMakeLists.txt b/Utilities/Release/WiX/CustomAction/CMakeLists.txt new file mode 100644 index 0000000..7efd01e --- /dev/null +++ b/Utilities/Release/WiX/CustomAction/CMakeLists.txt @@ -0,0 +1,13 @@ +foreach(CONFIG DEBUG MINSIZEREL RELEASE RELWITHDEBINFO) + string(REPLACE "/MD" "/MT" + "CMAKE_CXX_FLAGS_${CONFIG}" + "${CMAKE_CXX_FLAGS_${CONFIG}}" + ) +endforeach() + +add_library(CMakeWiXCustomActions MODULE + detect_nsis_overwrite.cpp + exports.def +) + +target_link_libraries(CMakeWiXCustomActions PRIVATE msi) |