You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
660 B
18 lines
660 B
cmake_minimum_required(VERSION 2.8.6 FATAL_ERROR) |
|
SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -std=gnu++0x") |
|
set(QT_MIN_VERSION "5.2.0") |
|
# Find includes in corresponding build directories |
|
set(CMAKE_INCLUDE_CURRENT_DIR ON) |
|
# Instruct CMake to run moc automatically when needed. |
|
set(CMAKE_AUTOMOC ON) |
|
|
|
find_package(ECM REQUIRED NO_MODULE) |
|
set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR}) |
|
include(KDEInstallDirs) |
|
include(KDECompilerSettings) |
|
include(KDECMakeSettings) |
|
#find_package(KF5ConfigWidgets REQUIRED) |
|
|
|
#find_package(Qt5 CONFIG REQUIRED COMPONENTS Core DBus Quick Widgets Concurrent X11Extras Test UiTools) |
|
|
|
add_subdirectory(kdecoration2)
|
|
|