mirror of
https://github.com/chylex/Nextcloud-Desktop.git
synced 2024-11-14 07:42:46 +01:00
5dc73ffd8b
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
27 lines
1.1 KiB
CMake
27 lines
1.1 KiB
CMake
# This file is configured at cmake time, and loaded at cpack time.
|
|
# To pass variables to cpack from cmake, they must be configured
|
|
# in this file.
|
|
|
|
if(CPACK_GENERATOR MATCHES "NSIS")
|
|
SET( CPACK_PACKAGE_ICON @CMAKE_SOURCE_DIR@/admin/win/nsi/installer.ico ) # A branding image that will be displayed on the top bar inside the installer. installer.bmp
|
|
SET( CPACK_NSIS_COMPRESSOR "/SOLID lzma" ) # The arguments that will be passed to the NSIS SetCompressor command. /SOLID lzma
|
|
endif(CPACK_GENERATOR MATCHES "NSIS")
|
|
|
|
set( CMAKE_SOURCE_DIR @CMAKE_SOURCE_DIR@ )
|
|
set( CMAKE_BINARY_DIR @CMAKE_BINARY_DIR@ )
|
|
set( OEM_THEME_DIR @OEM_THEME_DIR@ )
|
|
|
|
if ( DEFINED OEM_THEME_DIR AND EXISTS ${OEM_THEME_DIR}/OEM.cmake )
|
|
include ( ${OEM_THEME_DIR}/OEM.cmake )
|
|
else ()
|
|
include ( "${CMAKE_SOURCE_DIR}/NEXTCLOUD.cmake" )
|
|
endif()
|
|
|
|
set( CRASHREPORTER_EXECUTABLE @CRASHREPORTER_EXECUTABLE@)
|
|
|
|
set( BUILD_OWNCLOUD_OSX_BUNDLE @BUILD_OWNCLOUD_OSX_BUNDLE@)
|
|
if(APPLE AND NOT BUILD_OWNCLOUD_OSX_BUNDLE)
|
|
message( FATAL_ERROR "You're trying to build a bundle although you haven't built the client in bundle mode.\n Add -DBUILD_OWNCLOUD_OSX_BUNDLE=ON")
|
|
endif()
|
|
|