Move WiX installer project to new dist directory

This commit is contained in:
Andrew Nelless 2017-02-09 16:42:29 +00:00
parent 191dac1193
commit 30768207b3
5 changed files with 8 additions and 6 deletions

View File

@ -352,14 +352,16 @@ if (CONF_DOXYGEN)
endif()
configure_file (src/setup/win32/Include.wxi.in
"${CMAKE_BINARY_DIR}/setup/Include.wxi" NEWLINE_STYLE WIN32)
if (WIN32)
configure_file (dist/wix/Include.wxi.in
"${CMAKE_BINARY_DIR}/dist/wix/Include.wxi" NEWLINE_STYLE WIN32)
configure_file (src/setup/win32/Product.wxs
"${CMAKE_BINARY_DIR}/setup/Product.wxs" COPYONLY)
configure_file (dist/wix/Product.wxs
"${CMAKE_BINARY_DIR}/dist/wix/Product.wxs" COPYONLY)
configure_file (src/setup/win32/Synergy.wixproj
"${CMAKE_BINARY_DIR}/setup/Synergy.wixproj" COPYONLY)
configure_file (dist/wix/Synergy.wixproj
"${CMAKE_BINARY_DIR}/dist/wix/Synergy.wixproj" COPYONLY)
endif()
option(SYNERGY_BUILD_LEGACY_SERVICE "Build the legacy service (synergyd)" ON)