Copy WiX setup files to build directory

This commit is contained in:
Andrew Nelless 2017-02-08 00:43:16 +00:00
parent f9b3969f72
commit 7d3531e3c2
1 changed files with 9 additions and 3 deletions

View File

@ -317,8 +317,6 @@ if (UNIX)
endif() endif()
endif() endif()
add_subdirectory(src)
if (WIN32) if (WIN32)
# TODO: consider using /analyze to uncover potential bugs in the source code. # TODO: consider using /analyze to uncover potential bugs in the source code.
@ -358,4 +356,12 @@ endif()
configure_file (src/setup/win32/Include.wxi.in configure_file (src/setup/win32/Include.wxi.in
"${CMAKE_BINARY_DIR}/setup/Include.wxi" NEWLINE_STYLE WIN32) "${CMAKE_BINARY_DIR}/setup/Include.wxi" NEWLINE_STYLE WIN32)
configure_file (src/setup/win32/Product.wxs
"${CMAKE_BINARY_DIR}/setup/Product.wxs" COPYONLY)
configure_file (src/setup/win32/Synergy.wixproj
"${CMAKE_BINARY_DIR}/setup/Synergy.wixproj" COPYONLY)
option(SYNERGY_BUILD_LEGACY_SERVICE "Build the legacy service (synergyd)" ON) option(SYNERGY_BUILD_LEGACY_SERVICE "Build the legacy service (synergyd)" ON)
add_subdirectory(src)