mirror of
https://github.com/nextcloud/desktop.git
synced 2025-10-26 11:17:43 +00:00
27 lines
837 B
CMake
27 lines
837 B
CMake
# SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors
|
|
# SPDX-FileCopyrightText: 2018 ownCloud GmbH
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
# Use static runtime for all subdirectories
|
|
foreach(buildType "" "_DEBUG" "_MINSIZEREL" "_RELEASE" "_RELWITHDEBINFO")
|
|
string(REPLACE "/MD" "/MT" "CMAKE_CXX_FLAGS${buildType}" "${CMAKE_CXX_FLAGS${buildType}}")
|
|
endforeach()
|
|
|
|
include_directories(
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
|
)
|
|
configure_file(WinShellExtConstants.h.in ${CMAKE_CURRENT_BINARY_DIR}/WinShellExtConstants.h)
|
|
|
|
add_subdirectory(NCContextMenu)
|
|
add_subdirectory(NCOverlays)
|
|
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()
|