mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-24 22:15:57 +03:00
Windows MSI: Let CMake install Shell Extensions WiX fragment to "msi/"
Signed-off-by: Michael Schuster <michael@schuster.ms>
This commit is contained in:
parent
fad9b2c969
commit
fc365df5de
2 changed files with 9 additions and 2 deletions
|
@ -7,9 +7,16 @@ include_directories(
|
||||||
${CMAKE_CURRENT_BINARY_DIR}
|
${CMAKE_CURRENT_BINARY_DIR}
|
||||||
)
|
)
|
||||||
configure_file(WinShellExtConstants.h.in ${CMAKE_CURRENT_BINARY_DIR}/WinShellExtConstants.h)
|
configure_file(WinShellExtConstants.h.in ${CMAKE_CURRENT_BINARY_DIR}/WinShellExtConstants.h)
|
||||||
configure_file(WinShellExt.wxs.in ${CMAKE_CURRENT_BINARY_DIR}/WinShellExt.wxs)
|
|
||||||
|
|
||||||
add_subdirectory(NCContextMenu)
|
add_subdirectory(NCContextMenu)
|
||||||
add_subdirectory(NCOverlays)
|
add_subdirectory(NCOverlays)
|
||||||
add_subdirectory(NCUtil)
|
add_subdirectory(NCUtil)
|
||||||
|
|
||||||
|
if(BUILD_WIN_MSI)
|
||||||
|
configure_file(WinShellExt.wxs.in ${CMAKE_CURRENT_BINARY_DIR}/WinShellExt.wxs)
|
||||||
|
|
||||||
|
install(FILES
|
||||||
|
${CMAKE_CURRENT_BINARY_DIR}/WinShellExt.wxs
|
||||||
|
DESTINATION msi/
|
||||||
|
)
|
||||||
|
endif()
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
* for more details.
|
* for more details.
|
||||||
*
|
*
|
||||||
-->
|
-->
|
||||||
<?include $(var.ProjectPath)Platform.wxi?>
|
<?include $(sys.CURRENTDIR)Platform.wxi?>
|
||||||
|
|
||||||
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
|
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
|
||||||
<Fragment>
|
<Fragment>
|
||||||
|
|
Loading…
Reference in a new issue