2014-02-08 12:30:02 +01:00
|
|
|
cmake_minimum_required(VERSION 2.8.12)
|
2013-01-30 14:53:19 +01:00
|
|
|
|
2013-10-22 00:40:17 +02:00
|
|
|
project(Plasma)
|
2013-02-07 20:09:05 +01:00
|
|
|
|
2013-01-30 14:53:19 +01:00
|
|
|
# Make CPack available to easy generate binary packages
|
|
|
|
include(CPack)
|
2013-02-07 20:09:05 +01:00
|
|
|
include(FeatureSummary)
|
2014-01-07 20:36:06 +01:00
|
|
|
include(GenerateExportHeader)
|
2013-02-07 20:09:05 +01:00
|
|
|
|
2013-01-30 14:53:19 +01:00
|
|
|
################# set KDE specific information #################
|
|
|
|
|
2014-02-08 12:30:02 +01:00
|
|
|
find_package(ECM 0.0.10 REQUIRED NO_MODULE)
|
2013-10-31 09:30:24 +01:00
|
|
|
set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR})
|
|
|
|
|
|
|
|
include(KDEInstallDirs)
|
|
|
|
include(KDECMakeSettings)
|
|
|
|
include(KDECompilerSettings)
|
2013-01-30 14:53:19 +01:00
|
|
|
|
|
|
|
if(KDE_PLATFORM_FEATURE_DISABLE_DEPRECATED)
|
|
|
|
set(KDE_NO_DEPRECATED TRUE)
|
|
|
|
set(CMAKE_AUTOMOC_MOC_OPTIONS "-DKDE_NO_DEPRECATED")
|
2013-02-08 00:56:43 +01:00
|
|
|
endif()
|
2013-01-30 14:53:19 +01:00
|
|
|
|
|
|
|
############### Load the CTest options ###############
|
|
|
|
# CTestCustom.cmake has to be in the CTEST_BINARY_DIR.
|
|
|
|
# in the KDE build system, this is the same as CMAKE_BINARY_DIR.
|
|
|
|
configure_file(${CMAKE_SOURCE_DIR}/CTestCustom.cmake ${CMAKE_BINARY_DIR}/CTestCustom.cmake COPYONLY)
|
|
|
|
|
2013-09-11 11:15:29 +02:00
|
|
|
################# Enable C++0x (still too early for -std=c++11) features for clang and gcc #################
|
2013-06-23 10:22:37 +02:00
|
|
|
|
|
|
|
if(UNIX)
|
2013-08-26 21:22:06 +02:00
|
|
|
#set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -std=c++0x")
|
|
|
|
add_definitions("-Wall -std=c++0x")
|
2013-06-23 10:22:37 +02:00
|
|
|
endif()
|
|
|
|
|
2013-01-30 14:53:19 +01:00
|
|
|
################# now find all used packages #################
|
|
|
|
|
2013-06-21 01:38:28 +02:00
|
|
|
set (QT_MIN_VERSION "5.2.0")
|
2014-02-08 18:48:40 +01:00
|
|
|
set(KF5_VERSION "4.96.0")
|
2013-01-30 14:53:19 +01:00
|
|
|
|
2014-02-17 16:36:56 +01:00
|
|
|
find_package(Qt5 REQUIRED NO_MODULE COMPONENTS Quick Sql Qml Widgets Svg Declarative Script Test)
|
2013-10-22 00:40:17 +02:00
|
|
|
|
2014-02-12 15:03:29 +01:00
|
|
|
find_package(KF5Activities ${KF5_VERSION} REQUIRED)
|
|
|
|
find_package(KF5Archive ${KF5_VERSION} REQUIRED)
|
|
|
|
find_package(KF5Auth ${KF5_VERSION} REQUIRED)
|
|
|
|
find_package(KF5Bookmarks ${KF5_VERSION} REQUIRED)
|
|
|
|
find_package(KF5Codecs ${KF5_VERSION} REQUIRED)
|
|
|
|
find_package(KF5Completion ${KF5_VERSION} REQUIRED)
|
|
|
|
find_package(KF5Config ${KF5_VERSION} REQUIRED)
|
|
|
|
find_package(KF5ConfigWidgets ${KF5_VERSION} REQUIRED)
|
|
|
|
find_package(KF5CoreAddons ${KF5_VERSION} REQUIRED)
|
|
|
|
find_package(KF5Crash ${KF5_VERSION} REQUIRED)
|
|
|
|
find_package(KF5DBusAddons ${KF5_VERSION} REQUIRED)
|
|
|
|
find_package(KF5DNSSD ${KF5_VERSION} REQUIRED)
|
|
|
|
find_package(KF5Declarative ${KF5_VERSION} REQUIRED)
|
|
|
|
find_package(KF5GlobalAccel ${KF5_VERSION} REQUIRED)
|
|
|
|
find_package(KF5GuiAddons ${KF5_VERSION} REQUIRED)
|
|
|
|
find_package(KF5I18n ${KF5_VERSION} REQUIRED)
|
|
|
|
find_package(KF5IconThemes ${KF5_VERSION} REQUIRED)
|
|
|
|
find_package(KF5IdleTime ${KF5_VERSION} REQUIRED)
|
|
|
|
find_package(KF5ItemModels ${KF5_VERSION} REQUIRED)
|
|
|
|
find_package(KF5ItemViews ${KF5_VERSION} REQUIRED)
|
|
|
|
find_package(KF5JS ${KF5_VERSION} REQUIRED)
|
|
|
|
find_package(KF5JobWidgets ${KF5_VERSION} REQUIRED)
|
|
|
|
find_package(KF5KIO ${KF5_VERSION} REQUIRED)
|
|
|
|
find_package(KF5Kross ${KF5_VERSION} REQUIRED)
|
|
|
|
find_package(KF5Notifications ${KF5_VERSION} REQUIRED)
|
|
|
|
find_package(KF5Parts ${KF5_VERSION} REQUIRED)
|
|
|
|
find_package(KF5Service ${KF5_VERSION} REQUIRED)
|
|
|
|
find_package(KF5Solid ${KF5_VERSION} REQUIRED)
|
|
|
|
find_package(KF5Sonnet ${KF5_VERSION} REQUIRED)
|
|
|
|
find_package(KF5TextWidgets ${KF5_VERSION} REQUIRED)
|
|
|
|
find_package(KF5ThreadWeaver ${KF5_VERSION} REQUIRED)
|
|
|
|
find_package(KF5UnitConversion ${KF5_VERSION} REQUIRED)
|
|
|
|
find_package(KF5Wallet ${KF5_VERSION} REQUIRED)
|
|
|
|
find_package(KF5WidgetsAddons ${KF5_VERSION} REQUIRED)
|
|
|
|
find_package(KF5WindowSystem ${KF5_VERSION} REQUIRED)
|
|
|
|
find_package(KF5XmlGui ${KF5_VERSION} REQUIRED)
|
2013-10-23 15:45:25 +02:00
|
|
|
|
2013-01-30 14:53:19 +01:00
|
|
|
#optional features
|
2013-02-08 01:03:29 +01:00
|
|
|
find_package(X11 MODULE)
|
2014-02-12 14:00:54 +01:00
|
|
|
set_package_properties(X11 PROPERTIES DESCRIPTION "X11 libraries"
|
|
|
|
URL "http://www.x.org"
|
|
|
|
TYPE OPTIONAL
|
|
|
|
)
|
2014-01-20 10:11:58 +01:00
|
|
|
find_package(XCB MODULE COMPONENTS XCB COMPOSITE DAMAGE SHAPE)
|
2013-09-04 07:14:24 +02:00
|
|
|
set_package_properties(XCB PROPERTIES DESCRIPTION "X protocol C-language Binding"
|
|
|
|
URL "http://xcb.freedesktop.org"
|
2014-02-12 14:00:54 +01:00
|
|
|
TYPE OPTIONAL
|
2013-09-04 07:14:24 +02:00
|
|
|
)
|
|
|
|
if(X11_FOUND AND XCB_XCB_FOUND)
|
|
|
|
set(HAVE_X11 1)
|
2014-02-12 14:00:54 +01:00
|
|
|
find_package(Qt5 REQUIRED NO_MODULE COMPONENTS X11Extras)
|
2013-01-30 14:53:19 +01:00
|
|
|
#X11_Xrender discovery is done by FindX11
|
2014-02-17 16:36:56 +01:00
|
|
|
#add_feature_info("X Rendering Extension (libXrender)" X11_Xrender_FOUND "Support for compositing, rendering operations, and alpha-blending. STRONGLY RECOMMENDED")
|
2013-02-08 00:56:43 +01:00
|
|
|
endif()
|
2013-01-30 14:53:19 +01:00
|
|
|
|
2013-02-05 16:33:51 +01:00
|
|
|
#FIXME: when we have a qca for qt5, reenable
|
2013-11-11 18:40:19 +01:00
|
|
|
# find_package(QCA2 2.0.0 MODULE)
|
2013-02-05 22:17:07 +01:00
|
|
|
set_package_properties(QCA2 PROPERTIES DESCRIPTION "Support for remote plasma widgets"
|
|
|
|
URL "http://delta.affinix.com/qca"
|
|
|
|
TYPE OPTIONAL
|
|
|
|
)
|
2013-01-30 14:53:19 +01:00
|
|
|
|
2013-07-26 18:01:10 +02:00
|
|
|
#find_package(DBusMenuQt MODULE)
|
|
|
|
#set_package_properties(DBusMenuQt PROPERTIES DESCRIPTION "Support for notification area menus via the DBusMenu protocol"
|
|
|
|
#URL "https://launchpad.net/libdbusmenu-qt"
|
|
|
|
#TYPE REQUIRED
|
|
|
|
#)
|
2013-01-30 14:53:19 +01:00
|
|
|
|
2014-01-17 19:16:00 +01:00
|
|
|
|
2013-07-14 18:17:30 +02:00
|
|
|
|
2013-08-18 10:01:44 +02:00
|
|
|
find_package(OpenGL)
|
|
|
|
set_package_properties(OpenGL PROPERTIES DESCRIPTION "The OpenGL libraries"
|
|
|
|
URL "http://www.opengl.org"
|
|
|
|
TYPE OPTIONAL
|
|
|
|
)
|
2014-02-24 09:41:31 +01:00
|
|
|
if(OPENGL_FOUND AND (${Qt5Gui_OPENGL_IMPLEMENTATION} STREQUAL "GL"))
|
2013-10-22 00:40:17 +02:00
|
|
|
set(HAVE_GLX ${HAVE_X11})
|
2013-08-18 10:01:44 +02:00
|
|
|
else()
|
|
|
|
set(HAVE_GLX 0)
|
|
|
|
endif()
|
|
|
|
|
2013-01-30 14:53:19 +01:00
|
|
|
#########################################################################
|
|
|
|
|
2014-02-08 12:30:02 +01:00
|
|
|
add_definitions(-DQT_DISABLE_DEPRECATED_BEFORE=0)
|
|
|
|
|
|
|
|
#add_definitions(-Wno-deprecated)
|
2013-01-30 14:53:19 +01:00
|
|
|
add_definitions(-DQT_USE_FAST_CONCATENATION -DQT_USE_FAST_OPERATOR_PLUS)
|
|
|
|
add_definitions(-DQT_NO_URL_CAST_FROM_STRING)
|
|
|
|
|
2013-02-08 00:50:29 +01:00
|
|
|
remove_definitions(-DQT_NO_CAST_FROM_ASCII -DQT_STRICT_ITERATORS -DQT_NO_CAST_FROM_BYTEARRAY -DQT_NO_KEYWORDS)
|
|
|
|
|
2013-12-11 13:53:09 +01:00
|
|
|
include(KF5PlasmaMacros.cmake)
|
2013-01-30 14:53:19 +01:00
|
|
|
|
|
|
|
################# configure checks and create the configured files #################
|
|
|
|
|
|
|
|
# now create config headers
|
|
|
|
configure_file(config-prefix.h.cmake ${CMAKE_CURRENT_BINARY_DIR}/config-prefix.h )
|
|
|
|
configure_file(config-compiler.h.cmake ${CMAKE_CURRENT_BINARY_DIR}/config-compiler.h )
|
|
|
|
|
2013-05-03 01:14:19 +02:00
|
|
|
################ create PlasmaConfig.cmake and install it ###########################
|
|
|
|
|
|
|
|
# create a Config.cmake and a ConfigVersion.cmake file and install them
|
2014-02-18 17:14:37 +01:00
|
|
|
include(ECMPackageConfigHelpers)
|
2013-05-03 01:14:19 +02:00
|
|
|
|
|
|
|
include(ECMSetupVersion)
|
2014-02-08 12:30:02 +01:00
|
|
|
ecm_setup_version(${KF5_VERSION}
|
|
|
|
VARIABLE_PREFIX PLASMA
|
|
|
|
VERSION_HEADER "${CMAKE_CURRENT_BINARY_DIR}/plasma_version.h"
|
|
|
|
PACKAGE_VERSION_FILE "${CMAKE_CURRENT_BINARY_DIR}/KF5PlasmaConfigVersion.cmake"
|
|
|
|
)
|
|
|
|
|
|
|
|
set(CMAKECONFIG_INSTALL_DIR "${CMAKECONFIG_INSTALL_PREFIX}/KF5Plasma")
|
2013-05-03 01:14:19 +02:00
|
|
|
|
2014-02-18 17:14:37 +01:00
|
|
|
ecm_configure_package_config_file(
|
2013-12-11 13:53:09 +01:00
|
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/KF5PlasmaConfig.cmake.in"
|
|
|
|
"${CMAKE_CURRENT_BINARY_DIR}/KF5PlasmaConfig.cmake"
|
2013-05-03 01:14:19 +02:00
|
|
|
INSTALL_DESTINATION ${CMAKECONFIG_INSTALL_DIR}
|
|
|
|
PATH_VARS INCLUDE_INSTALL_DIR CMAKE_INSTALL_PREFIX
|
|
|
|
)
|
|
|
|
|
|
|
|
install(FILES
|
2013-12-11 13:53:09 +01:00
|
|
|
"${CMAKE_CURRENT_BINARY_DIR}/KF5PlasmaConfig.cmake"
|
|
|
|
"${CMAKE_CURRENT_BINARY_DIR}/KF5PlasmaConfigVersion.cmake"
|
|
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/KF5PlasmaMacros.cmake"
|
2013-05-03 01:14:19 +02:00
|
|
|
DESTINATION "${CMAKECONFIG_INSTALL_DIR}"
|
|
|
|
COMPONENT Devel
|
|
|
|
)
|
2013-06-13 01:43:35 +02:00
|
|
|
|
2014-02-08 12:30:02 +01:00
|
|
|
install(EXPORT KF5PlasmaTargets
|
|
|
|
DESTINATION "${CMAKECONFIG_INSTALL_DIR}"
|
|
|
|
FILE KF5PlasmaTargets.cmake
|
|
|
|
NAMESPACE KF5::
|
|
|
|
COMPONENT Devel)
|
|
|
|
|
|
|
|
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/plasma_version.h
|
|
|
|
DESTINATION ${INCLUDE_INSTALL_DIR} COMPONENT Devel )
|
|
|
|
|
2014-02-11 21:19:47 +01:00
|
|
|
# make plasma_version.h available
|
|
|
|
include_directories(${CMAKE_CURRENT_BINARY_DIR})
|
|
|
|
|
2013-01-30 14:53:19 +01:00
|
|
|
################# list the subdirectories #################
|
2013-05-03 03:16:07 +02:00
|
|
|
add_subdirectory(src)
|
2013-09-04 11:34:00 +02:00
|
|
|
add_subdirectory(desktoptheme)
|
|
|
|
add_subdirectory(examples)
|
2014-02-10 15:17:07 +01:00
|
|
|
add_subdirectory(autotests)
|
|
|
|
add_subdirectory(tests)
|
2013-01-30 14:53:19 +01:00
|
|
|
|
|
|
|
feature_summary(WHAT ALL FATAL_ON_MISSING_REQUIRED_PACKAGES)
|