-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCMakeLists.txt
executable file
·167 lines (148 loc) · 3.6 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
cmake_minimum_required(VERSION 3.5)
project(QtBitmapEditor VERSION 0.1 LANGUAGES CXX)
set(CMAKE_INCLUDE_CURRENT_DIR ON)
set(CMAKE_AUTOUIC ON)
set(CMAKE_AUTOMOC ON)
set(CMAKE_AUTORCC ON)
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
find_package(QT NAMES Qt6 Qt5 REQUIRED COMPONENTS Widgets)
find_package(Qt${QT_VERSION_MAJOR} REQUIRED COMPONENTS Widgets)
find_package(Qt${QT_VERSION_MAJOR} REQUIRED COMPONENTS PrintSupport)
# TOOL
set(QBE_TOOL
tool/pencil.h
tool/pencil.cpp
tool/eraser.h
tool/eraser.cpp
tool/brush.h
tool/brush.cpp
tool/fillcolor.h
tool/fillcolor.cpp
tool/eyedropper.h
tool/eyedropper.cpp
tool/text.h
tool/text.cpp
)
# LAYER
set(QBE_LAYER
layer/bitmaplayer.h
layer/bitmaplayer.cpp
layer/textlayer.h
layer/textlayer.cpp
layer/imagelayer.h
layer/imagelayer.cpp
)
# UTILITY
set(QBE_UTILITY
utility/mouseeventhelper.h
utility/mouseeventhelper.cpp
utility/colorpicker.h
utility/colorpicker.cpp
utility/gradientwidget.h
utility/gradientwidget.cpp
utility/coloritem.h
utility/coloritem.cpp
utility/fontselector.h
utility/fontselector.cpp
)
# UI
set(QBE_UI
mainwindow.h
mainwindow.cpp
mainwindow.ui
projectwizard.h
projectwizard.cpp
projectwizard.ui
newproject.h
newproject.cpp
newproject.ui
openproject.h
openproject.cpp
openproject.ui
projectfromimage.h
projectfromimage.cpp
projectfromimage.ui
importimage.h
importimage.cpp
importimage.ui
exportproject.h
exportproject.cpp
exportproject.ui
about.h
about.cpp
about.ui
)
# RESOURCES
set(QBE_RES
icons.qrc
theme.qrc
splash.qrc
)
# BASE
set(QBE_BASE
base/app_context.h
base/app_context.cpp
base/module.h
base/config.h
base/dialogs.h
base/project.h
base/project.cpp
base/layer.h
base/layer.cpp
base/layermanager.h
base/layermanager.cpp
base/toolcontroller.h
base/toolcontroller.cpp
base/workspace.h
base/workspace.cpp
base/tool.h
base/tool.cpp
)
# PROJECT
set(PROJECT_SOURCES
main.cpp
${QBE_BASE}
${QBE_LAYER}
${QBE_TOOL}
${QBE_UTILITY}
${QBE_UI}
${QBE_RES}
)
if(${QT_VERSION_MAJOR} GREATER_EQUAL 6)
qt_add_executable(QtBitmapEditor
MANUAL_FINALIZATION
${PROJECT_SOURCES}
)
# Define target properties for Android with Qt 6 as:
# set_property(TARGET QtBitmapEditor APPEND PROPERTY QT_ANDROID_PACKAGE_SOURCE_DIR
# ${CMAKE_CURRENT_SOURCE_DIR}/android)
# For more information, see https://doc.qt.io/qt-6/qt-add-executable.html#target-creation
else()
if(ANDROID)
add_library(QtBitmapEditor SHARED
${PROJECT_SOURCES}
)
# Define properties for Android with Qt 5 after find_package() calls as:
# set(ANDROID_PACKAGE_SOURCE_DIR "${CMAKE_CURRENT_SOURCE_DIR}/android")
else()
add_executable(QtBitmapEditor
${PROJECT_SOURCES}
)
endif()
endif()
target_link_libraries(QtBitmapEditor PRIVATE Qt${QT_VERSION_MAJOR}::Widgets)
target_link_libraries(QtBitmapEditor PRIVATE Qt${QT_VERSION_MAJOR}::PrintSupport)
set_target_properties(QtBitmapEditor PROPERTIES
MACOSX_BUNDLE_GUI_IDENTIFIER my.example.com
MACOSX_BUNDLE_BUNDLE_VERSION ${PROJECT_VERSION}
MACOSX_BUNDLE_SHORT_VERSION_STRING ${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}
MACOSX_BUNDLE TRUE
WIN32_EXECUTABLE TRUE
)
install(TARGETS QtBitmapEditor
BUNDLE DESTINATION .
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR})
if(QT_VERSION_MAJOR EQUAL 6)
qt_finalize_executable(QtBitmapEditor)
endif()