-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
278 lines (245 loc) · 7.54 KB
/
CMakeLists.txt
File metadata and controls
278 lines (245 loc) · 7.54 KB
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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
# **********************************************************************
# * Copyright (C) 2017-2025 MX Authors
# *
# * Authors: Adrian
# * Dolphin_Oracle
# * MX Linux <http://mxlinux.org>
# *
# * This file is part of mx-packageinstaller.
# *
# * mx-packageinstaller is free software: you can redistribute it and/or modify
# * it under the terms of the GNU General Public License as published by
# * the Free Software Foundation, either version 3 of the License, or
# * (at your option) any later version.
# *
# * mx-packageinstaller is distributed in the hope that it will be useful,
# * but WITHOUT ANY WARRANTY; without even the implied warranty of
# * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# * GNU General Public License for more details.
# *
# * You should have received a copy of the GNU General Public License
# * along with mx-packageinstaller. If not, see <http://www.gnu.org/licenses/>.
# **********************************************************************/
cmake_minimum_required(VERSION 3.16)
# Allow selecting clang before project() to ensure proper toolchain detection
option(USE_CLANG "Use clang compiler" OFF)
if(USE_CLANG)
set(CMAKE_C_COMPILER clang)
set(CMAKE_CXX_COMPILER clang++)
message(STATUS "Using clang compiler")
endif()
# Version detection with override and fallback
set(PROJECT_VERSION_OVERRIDE "" CACHE STRING "Override project version (e.g. 1.2.3)")
set(PROJECT_VERSION_FROM_CHANGELOG "")
find_program(DPKG_PARSECHANGELOG_EXECUTABLE NAMES dpkg-parsechangelog)
if(PROJECT_VERSION_OVERRIDE)
set(PROJECT_VERSION_FROM_CHANGELOG ${PROJECT_VERSION_OVERRIDE})
elseif(DPKG_PARSECHANGELOG_EXECUTABLE)
execute_process(
COMMAND ${DPKG_PARSECHANGELOG_EXECUTABLE} -SVersion
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
OUTPUT_VARIABLE PROJECT_VERSION_FROM_CHANGELOG
OUTPUT_STRIP_TRAILING_WHITESPACE
RESULT_VARIABLE DPKG_RESULT
)
if(NOT DPKG_RESULT EQUAL 0 OR PROJECT_VERSION_FROM_CHANGELOG STREQUAL "")
set(PROJECT_VERSION_FROM_CHANGELOG "0.0.0")
message(WARNING "Failed to get version from debian/changelog; defaulting to ${PROJECT_VERSION_FROM_CHANGELOG}")
endif()
else()
set(PROJECT_VERSION_FROM_CHANGELOG "0.0.0")
message(WARNING "dpkg-parsechangelog not found; defaulting to ${PROJECT_VERSION_FROM_CHANGELOG}")
endif()
project(mx-packageinstaller
VERSION ${PROJECT_VERSION_FROM_CHANGELOG}
DESCRIPTION "MX Package Installer - A tool for managing packages on MX Linux"
LANGUAGES CXX
)
# Set C++ standard
set(CMAKE_CXX_STANDARD 20)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
# Enable compile commands export for IDEs and tools
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
# Optimize for Ninja builds
if(CMAKE_GENERATOR STREQUAL "Ninja")
# Enable colored output for Ninja
if(CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
add_compile_options(-fdiagnostics-color=always)
elseif(CMAKE_CXX_COMPILER_ID STREQUAL "Clang")
add_compile_options(-fcolor-diagnostics)
endif()
endif()
# Option to build tests
option(BUILD_TESTS "Build unit tests" OFF)
# Find Qt6 components
find_package(Qt6 REQUIRED COMPONENTS
Core
Gui
Widgets
Network
Xml
LinguistTools
)
# Enable automatic MOC, UIC, and RCC processing
set(CMAKE_AUTOMOC ON)
set(CMAKE_AUTOUIC ON)
set(CMAKE_AUTORCC ON)
# Define source files
set(SOURCES
src/log.cpp
src/main.cpp
src/mainwindow.cpp
src/checkableheaderview.cpp
src/lockfile.cpp
src/versionnumber.cpp
src/aptcache.cpp
src/remotes.cpp
src/about.cpp
src/cmd.cpp
src/models/packagemodel.cpp
src/models/packagefilterproxy.cpp
src/models/flatpakmodel.cpp
src/models/flatpakfilterproxy.cpp
src/models/popularmodel.cpp
src/models/popularfilterproxy.cpp
)
set(HELPER_SOURCES
src/helper.cpp
)
set(HEADERS
src/log.h
src/mainwindow.h
src/checkableheaderview.h
src/lockfile.h
src/versionnumber.h
src/aptcache.h
src/remotes.h
src/about.h
src/cmd.h
src/packagestatus.h
src/models/packagemodel.h
src/models/packagefilterproxy.h
src/models/flatpakmodel.h
src/models/flatpakfilterproxy.h
src/models/popularmodel.h
src/models/popularfilterproxy.h
)
set(UI_FILES
src/mainwindow.ui
)
set(RESOURCE_FILES
src/images.qrc
)
# Get all translation files
file(GLOB TRANSLATION_FILES "translations/*.ts")
# Create the executable
add_executable(mx-packageinstaller
${SOURCES}
${HEADERS}
${UI_FILES}
${RESOURCE_FILES}
)
add_executable(helper
${HELPER_SOURCES}
)
# Link Qt6 libraries
target_link_libraries(mx-packageinstaller
Qt6::Core
Qt6::Gui
Qt6::Widgets
Qt6::Network
Qt6::Xml
)
target_link_libraries(helper
Qt6::Core
Qt6::Xml
)
# Set compiler flags
target_compile_options(mx-packageinstaller PRIVATE
-Wpedantic
-pedantic
-Werror=return-type
-Werror=switch
-Werror=uninitialized
-Werror
)
target_compile_options(helper PRIVATE
-Wpedantic
-pedantic
-Werror=return-type
-Werror=switch
-Werror=uninitialized
-Werror
)
# Add compiler-specific flags
if(CMAKE_CXX_COMPILER_ID STREQUAL "Clang" OR USE_CLANG)
target_compile_options(mx-packageinstaller PRIVATE -Werror=return-stack-address)
target_compile_options(helper PRIVATE -Werror=return-stack-address)
else()
target_compile_options(mx-packageinstaller PRIVATE
-Werror=return-local-addr
# Suppress false positive LTO warnings with Qt6 QHash (GCC only)
-Wno-alloc-size-larger-than
)
target_compile_options(helper PRIVATE
-Werror=return-local-addr
-Wno-alloc-size-larger-than
)
endif()
# Set compile definitions
target_compile_definitions(mx-packageinstaller PRIVATE
QT_DEPRECATED_WARNINGS
QT_DISABLE_DEPRECATED_BEFORE=0x060000
VERSION="${PROJECT_VERSION}"
)
target_compile_definitions(helper PRIVATE
QT_DEPRECATED_WARNINGS
QT_DISABLE_DEPRECATED_BEFORE=0x060000
VERSION="${PROJECT_VERSION}"
)
# Release-specific optimizations
if(CMAKE_BUILD_TYPE STREQUAL "Release")
target_compile_definitions(mx-packageinstaller PRIVATE NDEBUG)
target_compile_options(mx-packageinstaller PRIVATE -O3)
# Add LTO - different flags for different compilers
if(CMAKE_CXX_COMPILER_ID STREQUAL "Clang" OR USE_CLANG)
target_compile_options(mx-packageinstaller PRIVATE -flto=thin)
target_link_options(mx-packageinstaller PRIVATE -flto=thin)
else()
target_compile_options(mx-packageinstaller PRIVATE -flto=auto)
target_link_options(mx-packageinstaller PRIVATE
-flto=auto
# Suppress false positive LTO warnings with Qt6 QHash at link time (GCC only)
-Wno-alloc-size-larger-than
)
endif()
endif()
# Handle translations
qt6_add_translations(mx-packageinstaller
TS_FILES ${TRANSLATION_FILES}
LRELEASE_OPTIONS -compress -nounfinished -removeidentical -silent
QM_FILES_OUTPUT_VARIABLE qm_files
)
# Set target properties
set_target_properties(mx-packageinstaller PROPERTIES
OUTPUT_NAME "mx-packageinstaller"
RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}
)
set_target_properties(helper PROPERTIES
OUTPUT_NAME "helper"
RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}
)
# Install target (required by Debian build system)
# Other files are handled by debian/install
install(TARGETS mx-packageinstaller
RUNTIME DESTINATION bin
)
install(TARGETS helper
RUNTIME DESTINATION lib/mx-packageinstaller
)
# Add tests if requested
if(BUILD_TESTS)
message(STATUS "Building with tests enabled")
enable_testing()
add_subdirectory(Testing)
endif()