fcfc201c8d
GIT_SILENT
229 lines
6.3 KiB
CMake
229 lines
6.3 KiB
CMake
add_subdirectory(packagestructure)
|
|
|
|
# This option should be removed, or moved down as far as possible.
|
|
# That means porting the existing frameworks to the CMake automoc
|
|
# feature. Porting is mostly removing explicit moc includes, and
|
|
# leaving the ones which are truly needed (ie, if you remove
|
|
# them, the build fails).
|
|
set(CMAKE_AUTOMOC_RELAXED_MODE ON)
|
|
|
|
if(KDE_PLATFORM_FEATURE_BINARY_COMPATIBLE_FEATURE_REDUCTION)
|
|
set(PLASMA_NO_PACKAGE_EXTRADATA TRUE)
|
|
endif()
|
|
|
|
#find_package(KdepimLibs 4.5.60)
|
|
#find_package(Gpgme)
|
|
#set_package_properties(KDEPIMLIBS PROPERTIES DESCRIPTION "KDE PIM libraries"
|
|
# URL "https://www.kde.org" TYPE OPTIONAL
|
|
# PURPOSE "Needed for building several Plasma DataEngines")
|
|
|
|
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/config-plasma.h.cmake ${CMAKE_CURRENT_BINARY_DIR}/config-plasma.h)
|
|
|
|
#FIXME: gpgme++ is in kdepimlibs, must move somewhere else!
|
|
include_directories(${KDEPIMLIBS_INCLUDE_DIRS} ${GPGME_INCLUDES})
|
|
|
|
add_definitions(-DKDE_DEFAULT_DEBUG_AREA=1209)
|
|
|
|
########### next target ###############
|
|
|
|
set(Plasma_LIB_SRCS
|
|
#global
|
|
plasma.cpp
|
|
pluginloader.cpp
|
|
version.cpp
|
|
|
|
#applets,containments,corona
|
|
applet.cpp
|
|
containment.cpp
|
|
containmentactions.cpp
|
|
corona.cpp
|
|
private/applet_p.cpp
|
|
private/associatedapplicationmanager.cpp
|
|
private/containment_p.cpp
|
|
private/timetracker.cpp
|
|
|
|
#Dataengines, services
|
|
datacontainer.cpp
|
|
dataengine.cpp
|
|
dataengineconsumer.cpp
|
|
service.cpp
|
|
servicejob.cpp
|
|
private/datacontainer_p.cpp
|
|
private/dataenginemanager.cpp
|
|
private/storage.cpp
|
|
private/storagethread.cpp
|
|
|
|
#packages
|
|
package.cpp
|
|
packagestructure.cpp
|
|
|
|
#graphics
|
|
framesvg.cpp
|
|
svg.cpp
|
|
theme.cpp
|
|
private/theme_p.cpp
|
|
|
|
#scripting
|
|
scripting/appletscript.cpp
|
|
scripting/dataenginescript.cpp
|
|
scripting/scriptengine.cpp
|
|
)
|
|
|
|
if(HAVE_X11)
|
|
set(Plasma_LIB_SRCS ${Plasma_LIB_SRCS} private/effectwatcher.cpp)
|
|
endif()
|
|
|
|
kconfig_add_kcfg_files(Plasma_LIB_SRCS data/kconfigxt/libplasma-theme-global.kcfgc)
|
|
|
|
#NEPOMUK_GENERATE_FROM_ONTOLOGY(
|
|
# nwc.nrl
|
|
# ${metadata_test_BINARY_DIR}
|
|
# TEST_HEADERS
|
|
# TEST_SOURCES
|
|
# TEST_INCLUDES
|
|
#)
|
|
|
|
ecm_qt_declare_logging_category(Plasma_LIB_SRCS HEADER debug_p.h IDENTIFIER LOG_PLASMA CATEGORY_NAME org.kde.plasma)
|
|
|
|
add_library(KF5Plasma ${Plasma_LIB_SRCS})
|
|
add_library(KF5::Plasma ALIAS KF5Plasma)
|
|
|
|
if(HAVE_X11)
|
|
set(PLASMA_EXTRA_LIBS ${PLASMA_EXTRA_LIBS} Qt5::X11Extras ${X11_LIBRARIES} XCB::XCB)
|
|
endif()
|
|
|
|
if(DL_LIBRARY)
|
|
set(PLASMA_EXTRA_LIBS ${PLASMA_EXTRA_LIBS} ${DL_LIBRARY})
|
|
endif()
|
|
|
|
target_link_libraries(KF5Plasma
|
|
PUBLIC
|
|
KF5::Service # For kplugininfo.h and kservice.h
|
|
Qt5::Gui
|
|
KF5::Package
|
|
PRIVATE
|
|
Qt5::Sql
|
|
Qt5::Svg
|
|
Qt5::DBus
|
|
KF5::Archive
|
|
KF5::GuiAddons #kimagecache
|
|
KF5::I18n
|
|
KF5::KIOCore #ServiceJob
|
|
KF5::KIOWidgets #KRun
|
|
KF5::WindowSystem #compositingActive
|
|
KF5::Declarative #runtimePlatform
|
|
KF5::XmlGui #KActionCollection
|
|
KF5::GlobalAccel #Applet::setGlobalShortcut
|
|
KF5::Notifications
|
|
KF5::IconThemes
|
|
${PLASMA_EXTRA_LIBS}
|
|
)
|
|
|
|
target_include_directories(KF5Plasma PUBLIC
|
|
"$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/..;${CMAKE_CURRENT_BINARY_DIR};${CMAKE_CURRENT_BINARY_DIR}/Plasma>"
|
|
)
|
|
target_include_directories(KF5Plasma INTERFACE
|
|
"$<INSTALL_INTERFACE:${KDE_INSTALL_INCLUDEDIR_KF5};${KF5_INCLUDE_INSTALL_DIR}/Plasma>"
|
|
)
|
|
|
|
set_target_properties(KF5Plasma PROPERTIES
|
|
VERSION ${PLASMA_VERSION_STRING}
|
|
SOVERSION ${PLASMA_SOVERSION}
|
|
EXPORT_NAME Plasma
|
|
)
|
|
|
|
########### install files ###############
|
|
generate_export_header(KF5Plasma
|
|
BASE_NAME Plasma
|
|
EXPORT_FILE_NAME plasma/plasma_export.h)
|
|
ecm_generate_headers(Plasma_CamelCase_HEADERS
|
|
HEADER_NAMES
|
|
Applet
|
|
Containment
|
|
ContainmentActions
|
|
Corona
|
|
DataContainer
|
|
DataEngine
|
|
DataEngineConsumer
|
|
PluginLoader
|
|
FrameSvg
|
|
Package
|
|
PackageStructure
|
|
Service
|
|
ServiceJob
|
|
Svg
|
|
Theme
|
|
Plasma
|
|
REQUIRED_HEADERS Plasma_HEADERS
|
|
PREFIX Plasma
|
|
)
|
|
|
|
set(Plasma_HEADERS
|
|
${Plasma_HEADERS}
|
|
version.h
|
|
)
|
|
|
|
set(PlasmaScripting_HEADERS
|
|
scripting/appletscript.h
|
|
scripting/dataenginescript.h
|
|
scripting/scriptengine.h
|
|
)
|
|
|
|
|
|
install(FILES
|
|
${Plasma_HEADERS}
|
|
${CMAKE_CURRENT_BINARY_DIR}/plasma/plasma_export.h
|
|
DESTINATION ${KDE_INSTALL_INCLUDEDIR_KF5}/plasma COMPONENT Devel)
|
|
|
|
install(FILES ${Plasma_CamelCase_HEADERS}
|
|
DESTINATION ${KDE_INSTALL_INCLUDEDIR_KF5}/Plasma COMPONENT Devel)
|
|
|
|
|
|
install(FILES ${PlasmaScripting_HEADERS}
|
|
DESTINATION ${KDE_INSTALL_INCLUDEDIR_KF5}/plasma/scripting COMPONENT Devel)
|
|
|
|
install(FILES
|
|
data/servicetypes/plasma-applet.desktop
|
|
data/servicetypes/plasma-containment.desktop
|
|
data/servicetypes/plasma-containmentactions.desktop
|
|
data/servicetypes/plasma-dataengine.desktop
|
|
data/servicetypes/plasma-generic.desktop
|
|
data/servicetypes/plasma-packagestructure.desktop
|
|
data/servicetypes/plasma-scriptengine.desktop
|
|
data/servicetypes/plasma-service.desktop
|
|
data/servicetypes/plasma-shell.desktop
|
|
data/servicetypes/plasma-lookandfeel.desktop
|
|
DESTINATION ${KDE_INSTALL_KSERVICETYPES5DIR})
|
|
|
|
install(FILES data/operations/dataengineservice.operations DESTINATION ${PLASMA_DATA_INSTALL_DIR}/services)
|
|
install(FILES data/operations/plasmoidservice.operations DESTINATION ${PLASMA_DATA_INSTALL_DIR}/services)
|
|
install(FILES data/operations/storage.operations DESTINATION ${PLASMA_DATA_INSTALL_DIR}/services)
|
|
|
|
install(TARGETS KF5Plasma EXPORT KF5PlasmaTargets ${KF5_INSTALL_TARGETS_DEFAULT_ARGS})
|
|
|
|
if(BUILD_QCH)
|
|
ecm_add_qch(
|
|
KF5Plasma_QCH
|
|
NAME Plasma
|
|
BASE_NAME KF5Plasma
|
|
VERSION ${KF5_VERSION}
|
|
ORG_DOMAIN org.kde
|
|
SOURCES # using only public headers, to cover only public API
|
|
${Plasma_HEADERS}
|
|
${PlasmaScripting_HEADERS}
|
|
Mainpage.dox
|
|
MD_MAINPAGE "${CMAKE_SOURCE_DIR}/README.md"
|
|
LINK_QCHS
|
|
Qt5Gui_QCH
|
|
KF5Service_QCH
|
|
KF5Package_QCH
|
|
BLANK_MACROS
|
|
PLASMA_EXPORT
|
|
PLASMA_DEPRECATED
|
|
PLASMA_DEPRECATED_EXPORT
|
|
TAGFILE_INSTALL_DESTINATION ${KDE_INSTALL_QTQCHDIR}
|
|
QCH_INSTALL_DESTINATION ${KDE_INSTALL_QTQCHDIR}
|
|
COMPONENT Devel
|
|
)
|
|
endif()
|