0d340688e9
this is used in https://github.com/owncloud/client/blob/master/shell_integration/nautilus/CMakeLists.txt for the nautilus shell integration fixes https://github.com/tpokorra/lbs-nextcloud/issues/1
24 linhas
1.1 KiB
CMake
24 linhas
1.1 KiB
CMake
set( APPLICATION_NAME "Nextcloud" )
|
|
set( APPLICATION_SHORTNAME "Nextcloud" )
|
|
set( APPLICATION_EXECUTABLE "nextcloud" )
|
|
set( APPLICATION_DOMAIN "nextcloud.com" )
|
|
set( APPLICATION_VENDOR "Nextcloud GmbH" )
|
|
set( APPLICATION_UPDATE_URL "https://updates.nextcloud.org/client/" CACHE string "URL for updater" )
|
|
|
|
set( THEME_CLASS "NextcloudTheme" )
|
|
set( APPLICATION_REV_DOMAIN "com.nextcloud.desktopclient" )
|
|
set( WIN_SETUP_BITMAP_PATH "${OEM_THEME_DIR}/win" )
|
|
|
|
set( MAC_INSTALLER_BACKGROUND_FILE "${OEM_THEME_DIR}/osx/installer-background.png" CACHE STRING "The MacOSX installer background image")
|
|
|
|
set( THEME_INCLUDE "${OEM_THEME_DIR}/nextcloudtheme.h" )
|
|
# set( APPLICATION_LICENSE "${OEM_THEME_DIR}/license.txt )
|
|
|
|
option( WITH_CRASHREPORTER "Build crashreporter" OFF )
|
|
set( CRASHREPORTER_SUBMIT_URL "https://crash-reports.owncloud.com/submit" CACHE string "URL for crash reporter" )
|
|
set( CRASHREPORTER_ICON ":/owncloud-icon.png" )
|
|
|
|
if(CPACK_GENERATOR MATCHES "NSIS")
|
|
SET( CPACK_PACKAGE_ICON "{OEM_THEME_DIR}/win/installer.ico" ) # Set installer icon
|
|
endif(CPACK_GENERATOR MATCHES "NSIS")
|