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
460 B
18 lines
460 B
project(breeze) |
|
cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR) |
|
|
|
include(WriteBasicConfigVersionFile) |
|
include(FeatureSummary) |
|
|
|
find_package(ECM 0.0.9 REQUIRED NO_MODULE) |
|
set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR}) |
|
|
|
include(KDEInstallDirs) |
|
include(KDECMakeSettings) |
|
include(KDECompilerSettings) |
|
include(GenerateExportHeader) |
|
|
|
add_subdirectory(cursors) |
|
|
|
|
|
feature_summary(WHAT ALL INCLUDE_QUIET_PACKAGES FATAL_ON_MISSING_REQUIRED_PACKAGES)
|
|
|