mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-25 14:36:01 +03:00
65fcac8d70
In the past, due to security reasons this file needed to be signed by us so the webview would work on mac OS. Signed-off-by: Camila Ayres <hello@camilasan.com>
16 lines
734 B
CMake
16 lines
734 B
CMake
|
|
# Check if variable MAC_INSTALLER_BACKGROUND_FILE is defined.
|
|
# 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(Qt${QT_VERSION_MAJOR} ${REQUIRED_QT_VERSION} 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)
|