mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-23 21:46:03 +03:00
9c5a51bb07
Fix for #1793: The problem seems to be related enabling hardened runtime. This exception allows the webview to load. Signed-off-by: Camila San <hello@camila.codes>
19 lines
917 B
CMake
19 lines
917 B
CMake
|
|
# Check if varialbe MAC_INSTALLER_BACKGROUND_FILE is defined. That might come
|
|
# from the OEM.cmake for branded clients or from NEXTCLOUD.cmake for the non
|
|
# branded client.
|
|
# Make sure that the MAC_INSTALLER_BACKGROUND_FILE contains the full path, ie.
|
|
# includes CMAKE_SOURCE_DIR or so.
|
|
|
|
if (DEFINED MAC_INSTALLER_BACKGROUND_FILE )
|
|
set(MAC_INSTALLER_DO_CUSTOM_BACKGROUND "1")
|
|
else()
|
|
set(MAC_INSTALLER_DO_CUSTOM_BACKGROUND "0")
|
|
endif()
|
|
|
|
find_package(Qt5 5.12 COMPONENTS Core REQUIRED)
|
|
configure_file(create_mac.sh.cmake ${CMAKE_CURRENT_BINARY_DIR}/create_mac.sh)
|
|
configure_file(macosx.pkgproj.cmake ${CMAKE_CURRENT_BINARY_DIR}/macosx.pkgproj)
|
|
configure_file(pre_install.sh.cmake ${CMAKE_CURRENT_BINARY_DIR}/pre_install.sh)
|
|
configure_file(post_install.sh.cmake ${CMAKE_CURRENT_BINARY_DIR}/post_install.sh)
|
|
configure_file(QtWebEngineProcess.entitlements ${CMAKE_CURRENT_BINARY_DIR}/QtWebEngineProcess.entitlements)
|