forked from opencloud-eu/desktop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOPENCLOUD.cmake
More file actions
23 lines (17 loc) · 767 Bytes
/
OPENCLOUD.cmake
File metadata and controls
23 lines (17 loc) · 767 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
option(DEV_BUILD "Use a standalone profile for developement" OFF)
if (DEV_BUILD)
set(THEME_SUFFIX " Dev")
else()
set(THEME_SUFFIX "")
endif()
set( APPLICATION_NAME "OpenCloud Desktop${THEME_SUFFIX}")
set( APPLICATION_SHORTNAME "OpenCloud${THEME_SUFFIX}" )
set( APPLICATION_EXECUTABLE "opencloud${THEME_SUFFIX}" )
set( APPLICATION_VENDOR "OpenCloud${THEME_SUFFIX}" )
set( APPLICATION_ICON_NAME "opencloud" )
# TODO: re enable once we got icons
#set( MAC_INSTALLER_BACKGROUND_FILE "${CMAKE_SOURCE_DIR}/admin/osx/installer-background.png")
set( THEME_CLASS "OpenCloudTheme" )
set( APPLICATION_REV_DOMAIN "eu.opencloud.desktop" )
set( THEME_INCLUDE "opencloudtheme.h" )
option( WITH_CRASHREPORTER "Build crashreporter" OFF )