Welcome to mirror list, hosted at ThFree Co, Russian Federation.

CPackOptions.cmake.in - github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f4a732fd7841110a136fb18eaf6949be3769de9b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# 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@ )

if ( EXISTS "${CMAKE_SOURCE_DIR}/OEM.cmake" )
     include ( "${CMAKE_SOURCE_DIR}/OEM.cmake" )
else ()
     include ( "${CMAKE_SOURCE_DIR}/OWNCLOUD.cmake" )
endif()

set( CSYNC_BINARY_DIR  @CSYNC_BINARY_DIR@ )
set( MINGW_ROOT @CMAKE_FIND_ROOT_PATH@ )
if(CSYNC_BINARY_DIR)
    set( CSYNC_LIBRARY_DIR "${CSYNC_BINARY_DIR}/src" )
    set( CSYNC_PLUGIN_DIR  "${CSYNC_BINARY_DIR}/modules" )
    set( CSYNC_CONFIG_DIR  "${CSYNC_BINARY_DIR}/config" )
else()
    set( CSYNC_LIBRARY_DIR "${MINGW_ROOT}/bin" )
    set( CSYNC_PLUGIN_DIR  "${MINGW_ROOT}/plugins-0" ) #FIXME: whatever it is
    set( CSYNC_CONFIG_DIR  "${MINGW_ROOT}/etc/ocsync" )
endif()
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 mirall in bundle mode.\n Add -DBUILD_OWNCLOUD_OSX_BUNDLE=ON")
endif()