NEXTCLOUD.cmake 1.7 KB

123456789101112131415161718192021222324252627282930313233
  1. set( APPLICATION_NAME "Nextcloud" )
  2. set( APPLICATION_SHORTNAME "Nextcloud" )
  3. set( APPLICATION_EXECUTABLE "nextcloud" )
  4. set( APPLICATION_DOMAIN "nextcloud.com" )
  5. set( APPLICATION_VENDOR "Nextcloud GmbH" )
  6. set( APPLICATION_UPDATE_URL "https://updates.nextcloud.org/client/" CACHE string "URL for updater" )
  7. set( APPLICATION_HELP_URL "" CACHE string "URL for the help menu" )
  8. set( APPLICATION_ICON_NAME "Nextcloud" )
  9. set( APPLICATION_SERVER_URL "" CACHE string "URL for the server to use. If entered the server can only connect to this instance" )
  10. set( LINUX_PACKAGE_SHORTNAME "nextcloud" )
  11. set( THEME_CLASS "NextcloudTheme" )
  12. set( APPLICATION_REV_DOMAIN "com.nextcloud.desktopclient" )
  13. set( WIN_SETUP_BITMAP_PATH "${CMAKE_SOURCE_DIR}/admin/win/nsi" )
  14. set( MAC_INSTALLER_BACKGROUND_FILE "${CMAKE_SOURCE_DIR}/admin/osx/installer-background.png" CACHE STRING "The MacOSX installer background image")
  15. # set( THEME_INCLUDE "${OEM_THEME_DIR}/mytheme.h" )
  16. # set( APPLICATION_LICENSE "${OEM_THEME_DIR}/license.txt )
  17. option( WITH_CRASHREPORTER "Build crashreporter" OFF )
  18. #set( CRASHREPORTER_SUBMIT_URL "https://crash-reports.owncloud.com/submit" CACHE string "URL for crash reporter" )
  19. #set( CRASHREPORTER_ICON ":/owncloud-icon.png" )
  20. option( WITH_PROVIDERS "Build with providers list" ON )
  21. ## Theming options
  22. set( APPLICATION_WIZARD_HEADER_BACKGROUND_COLOR "#0082c9" CACHE string "Hex color of the wizard header background")
  23. set( APPLICATION_WIZARD_HEADER_TITLE_COLOR "#ffffff" CACHE string "Hex color of the text in the wizard header")
  24. option( APPLICATION_WIZARD_USE_CUSTOM_LOGO "Use the logo from ':/client/theme/colored/wizard_logo.png' else the default application icon is used" ON )