project(kremotecontrol) if(NOT UNIX) message(FATAL_ERROR "KRemoteControl is only supposed to be built on Unix platforms.") endif(NOT UNIX) if(${CMAKE_SOURCE_DIR} STREQUAL ${CMAKE_CURRENT_SOURCE_DIR}) find_package(KDE4) include(KDE4Defaults) include_directories(${KDE4_INCLUDES}) # If definitions like -D_GNU_SOURCE are needed for these checks they # should be added to _KDE4_PLATFORM_DEFINITIONS when it is originally # defined outside this file. Here we include these definitions in # CMAKE_REQUIRED_DEFINITIONS so they will be included in the build of # checks below. set( CMAKE_REQUIRED_DEFINITIONS ${_KDE4_PLATFORM_DEFINITIONS} ) set(STUFF_REQUIRED TRUE) else() set(STUFF_REQUIRED FALSE) endif() macro_log_feature( QT_QTXMLPATTERNS_FOUND "QtXmlPatterns" "Qt support for XPath, XQuery, XSLT and XML Schema validation" "http://doc.trolltech.com/latest/qtxmlpatterns.html" ${STUFF_REQUIRED} "" "Required to build kremotecontrol." ) if(NOT QT_QTXMLPATTERNS_FOUND) if(${CMAKE_SOURCE_DIR} STREQUAL ${CMAKE_CURRENT_SOURCE_DIR}) macro_display_feature_log() else() return() endif() endif() include_directories(${CMAKE_CURRENT_SOURCE_DIR}) add_subdirectory(libkremotecontrol) add_subdirectory(kcmremotecontrol) add_subdirectory(profiles) add_subdirectory(kded) add_subdirectory(krcdnotifieritem) add_subdirectory(dataengine) if(KDE4_BUILD_TESTS) add_subdirectory(tests) endif(KDE4_BUILD_TESTS) add_subdirectory(doc)