| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165 |
- cmake_minimum_required(VERSION 2.6)
- cmake_policy(VERSION 2.8.0)
- project(mirall)
- set(PACKAGE "mirall")
- set( CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake/modules )
- include(Warnings)
- set(OEM_THEME_DIR "" CACHE STRING "Define directory containing a custom theme")
- if ( EXISTS ${OEM_THEME_DIR}/OEM.cmake )
- include ( ${OEM_THEME_DIR}/OEM.cmake )
- else ()
- include ( ${CMAKE_SOURCE_DIR}/OWNCLOUD.cmake )
- endif()
- if (NOT DEFINED APPLICATION_SHORTNAME)
- set ( APPLICATION_SHORTNAME ${APPLICATION_NAME} )
- endif()
- include(${CMAKE_SOURCE_DIR}/VERSION.cmake)
- configure_file( ${CMAKE_SOURCE_DIR}/src/mirall/version.h.in "${CMAKE_CURRENT_BINARY_DIR}/src/mirall/version.h" )
- include_directories(BEFORE ${CMAKE_CURRENT_BINARY_DIR} "${CMAKE_CURRENT_BINARY_DIR}/src/mirall/")
- #####
- ## handle DBUS for Fdo notifications
- if( UNIX AND NOT APPLE )
- add_definitions( -DUSE_FDO_NOTIFICATIONS)
- set(WITH_DBUS ON)
- endif()
- ####
- include(GNUInstallDirs)
- include(DefineInstallationPaths)
- include(QtVersionAbstraction)
- setup_qt()
- include(GetGitRevisionDescription)
- get_git_head_revision(GIT_REFSPEC GIT_SHA1)
- # if we cannot get it from git, directly try .tag (packages)
- # this will work if the tar balls have been properly created
- # via git-archive.
- if (GIT_SHA1)
- if (${GIT_SHA1} STREQUAL "GITDIR-NOTFOUND")
- file(READ ${CMAKE_SOURCE_DIR}/.tag sha1_candidate)
- string(REPLACE "\n" "" sha1_candidate ${sha1_candidate})
- if (NOT ${sha1_candidate} STREQUAL "$Format:%H$")
- message("${sha1_candidate}")
- set (GIT_SHA1 "${sha1_candidate}")
- endif()
- endif()
- endif()
- set(SYSCONFDIR ${SYSCONF_INSTALL_DIR})
- set(DATADIR ${DATA_INSTALL_DIR})
- #####
- ## handle BUILD_OWNCLOUD_OSX_BUNDLE
- # BUILD_OWNCLOUD_OSX_BUNDLE was not initialized OR set to true on OSX
- if(APPLE AND (NOT DEFINED BUILD_OWNCLOUD_OSX_BUNDLE OR BUILD_OWNCLOUD_OSX_BUNDLE))
- set(BUILD_OWNCLOUD_OSX_BUNDLE ON)
- set(OWNCLOUD_OSX_BUNDLE "${APPLICATION_EXECUTABLE}.app")
- set(LIB_INSTALL_DIR "${APPLICATION_EXECUTABLE}.app/Contents/MacOS")
- set(BIN_INSTALL_DIR "${APPLICATION_EXECUTABLE}.app/Contents/MacOS")
- # BUILD_OWNCLOUD_OSX_BUNDLE was disabled on OSX
- elseif(APPLE AND NOT BUILD_OWNCLOUD_OSX_BUNDLE)
- message(FATAL_ERROR "Building in non-bundle mode on OSX is currently not supported. Comment this error out if you want to work on/test it.")
- # any other platform
- else()
- set(BUILD_OWNCLOUD_OSX_BUNDLE OFF)
- endif()
- #####
- # this option removes Http authentication, keychain, shibboleth etc and is intended for
- # external authentication mechanisms
- option(TOKEN_AUTH_ONLY "TOKEN_AUTH_ONLY" OFF)
- if(TOKEN_AUTH_ONLY)
- message("Compiling with token authentication")
- add_definitions(-DTOKEN_AUTH_ONLY=1)
- endif()
- # this option creates only libocsync and libowncloudsync
- option(BUILD_LIBRARIES_ONLY "BUILD_LIBRARIES_ONLY" OFF)
- # When this option is enabled, 5xx errors are not added to the clacklist
- # Normaly you don't want to enable this option because if a particular file
- # trigger a bug on the server, you want the file to be blacklisted.
- option(OWNCLOUD_5XX_NO_BLACKLIST "OWNCLOUD_5XX_NO_BLACKLIST" OFF)
- if(OWNCLOUD_5XX_NO_BLACKLIST)
- add_definitions(-DOWNCLOUD_5XX_NO_BLACKLIST=1)
- endif()
- #### find libs
- #find_package(Qt4 4.7.0 COMPONENTS QtCore QtGui QtXml QtNetwork QtTest QtWebkit REQUIRED )
- #if( UNIX AND NOT APPLE ) # Fdo notifications
- # find_package(Qt4 4.7.0 COMPONENTS QtDBus REQUIRED )
- #endif()
- find_package(Neon REQUIRED)
- if(NOT TOKEN_AUTH_ONLY)
- if (Qt5Core_DIR)
- find_package(Qt5Keychain REQUIRED)
- else()
- find_package(QtKeychain REQUIRED)
- endif()
- endif()
- if(APPLE)
- find_package(Sparkle)
- endif(APPLE)
- if(UNIX)
- find_package(INotify REQUIRED)
- else()
- find_package(INotify)
- endif()
- find_package(Sphinx)
- find_package(PdfLatex)
- configure_file(config.h.in ${CMAKE_CURRENT_BINARY_DIR}/config.h)
- configure_file(test/test_journal.db "${CMAKE_BINARY_DIR}/test/test_journal.db" COPYONLY)
- # Copy that logo, the installer uses it later
- if(BUILD_OWNCLOUD_OSX_BUNDLE)
- install(FILES resources/owncloud_logo_blue.png DESTINATION ${OWNCLOUD_OSX_BUNDLE}/Contents/Resources/)
- endif()
- include(OwnCloudCPack.cmake)
- add_definitions(-DUNICODE)
- add_definitions(-D_UNICODE)
- if( WIN32 )
- add_definitions( -D__USE_MINGW_ANSI_STDIO=1 )
- endif( WIN32 )
- # Handle Translations, pick all mirall_* files from trans directory.
- file( GLOB TRANS_FILES ${CMAKE_SOURCE_DIR}/translations/mirall_*.ts)
- set(TRANSLATIONS ${TRANS_FILES})
- add_subdirectory(csync)
- add_subdirectory(src)
- add_subdirectory(shell_integration)
- add_subdirectory(doc)
- add_subdirectory(admin)
- if(UNIT_TESTING)
- include(CTest)
- enable_testing()
- add_subdirectory(test)
- endif(UNIT_TESTING)
- if(BUILD_OWNCLOUD_OSX_BUNDLE)
- configure_file(sync-exclude.lst ${OWNCLOUD_OSX_BUNDLE}/Contents/Resources/sync-exclude.lst COPYONLY)
- else()
- install( FILES sync-exclude.lst DESTINATION ${SYSCONFDIR}/${APPLICATION_SHORTNAME} )
- configure_file(sync-exclude.lst bin/sync-exclude.lst COPYONLY)
- endif()
|