diff options
author | Brad King <brad.king@kitware.com> | 2017-03-09 15:18:08 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2017-03-09 15:20:35 (GMT) |
commit | ae0f7dfa954e97d8b62cf83f0063e37171b457f8 (patch) | |
tree | 4e83d43b82b8be45e1e73cf3d3eb40c4b8a8e550 /Tests/CPackComponents | |
parent | 632534104c4c094d07ab085fc10f2e3e35961ae0 (diff) | |
download | CMake-ae0f7dfa954e97d8b62cf83f0063e37171b457f8.zip CMake-ae0f7dfa954e97d8b62cf83f0063e37171b457f8.tar.gz CMake-ae0f7dfa954e97d8b62cf83f0063e37171b457f8.tar.bz2 |
Tests: Fix CPackComponents NSIS install root
Without `CPACK_VERBATIM_VARIABLES` a path with backslashes does not make
it through `CPackConfig.cmake` properly. Just use forward slashes which
NSIS seems to understand anyway.
Diffstat (limited to 'Tests/CPackComponents')
-rw-r--r-- | Tests/CPackComponents/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/CPackComponents/CMakeLists.txt b/Tests/CPackComponents/CMakeLists.txt index 3c8ae35..5b03c9e 100644 --- a/Tests/CPackComponents/CMakeLists.txt +++ b/Tests/CPackComponents/CMakeLists.txt @@ -79,7 +79,7 @@ set(CPACK_NSIS_MENU_LINKS ) # Suggested default root for end users of the installer: -set(CPACK_NSIS_INSTALL_ROOT "C:\\Program Files\\CMake Tests Install Root") +set(CPACK_NSIS_INSTALL_ROOT "C:/Program Files/CMake Tests Install Root") # Include CPack to introduce the appropriate targets include(CPack) |