mirror of
https://github.com/Kitware/CMake.git
synced 2026-02-20 22:20:50 -06:00
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.
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user