-
Notifications
You must be signed in to change notification settings - Fork 1
/
CMakeLists.txt
75 lines (62 loc) · 2.35 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#########################################################################
# Project: DrawView #
# Edit: 23-May-21 #
#########################################################################
# #
# #
#########################################################################
project(drawview)
set(VERSION "2.00")
message(STATUS "Configuring for DrawView version ${VERSION}")
#########################################################################
# #
# ECM paths and definitions #
# #
#########################################################################
set(QT_MIN_VERSION "5.10.0")
set(KF5_MIN_VERSION "5.68.0")
set(ECM_MIN_VERSION "5.68.0")
find_package(ECM ${ECM_MIN_VERSION} REQUIRED NO_MODULE)
set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR})
include(ECMSetupVersion)
include(FeatureSummary)
include(KDEInstallDirs)
include(KDECMakeSettings)
include(KDEFrameworkCompilerSettings)
include(ECMQtDeclareLoggingCategory)
#########################################################################
# #
# Options #
# #
#########################################################################
option(INSTALL_BINARIES "Install the binaries and libraries, turn off for development in place" ON)
option(INSTALL_EXAMPLES "Install the example files" ON)
#########################################################################
# #
# VCS version tracking #
# #
#########################################################################
add_custom_target(vcsversion
ALL
COMMENT "Checking VCS type and version"
VERBATIM
COMMAND sh ${CMAKE_CURRENT_SOURCE_DIR}/genversion.sh ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_BINARY_DIR} ${VERSION}
)
#########################################################################
# #
# Subdirectories #
# #
#########################################################################
add_subdirectory(utils)
add_subdirectory(desktop)
add_subdirectory(filter)
add_subdirectory(app)
add_subdirectory(po)
add_subdirectory(share)
add_subdirectory(examples)
#########################################################################
# #
# Information at end of cmake run #
# #
#########################################################################
feature_summary(WHAT ALL FATAL_ON_MISSING_REQUIRED_PACKAGES)