-
Notifications
You must be signed in to change notification settings - Fork 7
/
CMakeLists.txt
217 lines (190 loc) · 6.82 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
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
cmake_minimum_required(VERSION 3.16)
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake")
##
## PROJECT
## name and version
##
project(cachyos-kernel-manager
VERSION 1.13.5
LANGUAGES CXX)
##
## INCLUDE
##
include(GNUInstallDirs)
include(StandardProjectSettings)
include(CheckSymbolExists)
include(CompilerWarnings)
include(EnableCcache)
include(Linker)
include(StaticAnalyzers)
include(Sanitizers)
include(CPM)
find_package(Python3 REQUIRED COMPONENTS Interpreter)
find_package(Threads REQUIRED)
find_package(PkgConfig REQUIRED)
find_package(Qt6 COMPONENTS Widgets LinguistTools Concurrent REQUIRED)
pkg_check_modules(
LIBALPM
REQUIRED
IMPORTED_TARGET
libalpm>=13.0.0)
pkg_check_modules(
LIBGLIB
REQUIRED
IMPORTED_TARGET
glib-2.0>=2.72.1)
CPMAddPackage(
NAME fmt
GITHUB_REPOSITORY fmtlib/fmt
GIT_TAG 11.0.2
EXCLUDE_FROM_ALL YES
)
CPMAddPackage(
NAME frozen
GITHUB_REPOSITORY serge-sans-paille/frozen
GIT_TAG 06bee5321cecd9a9ffaceb164b5adb2ffafae781
EXCLUDE_FROM_ALL YES
)
CPMAddPackage(
NAME Corrosion
GITHUB_REPOSITORY corrosion-rs/corrosion
GIT_TAG b816285a706acbf3efa8a946f834ca32e093ff41
EXCLUDE_FROM_ALL YES
)
find_package(PolkitQt6-1 REQUIRED)
##
## CONFIGURATION
##
set(CMAKE_AUTOUIC ON)
set(CMAKE_AUTOMOC ON)
set(CMAKE_AUTORCC ON)
set(CMAKE_AUTOUIC_SEARCH_PATHS ${CMAKE_CURRENT_SOURCE_DIR}/src)
if(CMAKE_CXX_COMPILER_ID MATCHES ".*Clang")
set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -flto=thin -fwhole-program-vtables")
set(CMAKE_EXE_LINKER_FLAGS_RELEASE "${CMAKE_EXE_LINKER_FLAGS_RELEASE} -flto=thin -fwhole-program-vtables")
elseif(CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -flto -fwhole-program -fuse-linker-plugin")
endif()
list(APPEND CMAKE_REQUIRED_LINK_OPTIONS "-lalpm")
check_symbol_exists(alpm_pkg_get_installed_db "alpm.h" HAVE_ALPM_INSTALLED_DB)
if(HAVE_ALPM_INSTALLED_DB)
add_compile_options(-DHAVE_ALPM_INSTALLED_DB)
endif()
# Link this 'library' to set the c++ standard / compile-time options requested
add_library(project_options INTERFACE)
target_compile_features(project_options INTERFACE cxx_std_23)
# Files with translation sources. You should run lupdate manually when needed to regenerate them
file(GLOB TS_FILES "${PROJECT_SOURCE_DIR}/lang/*.ts")
file(MAKE_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/lang")
set_source_files_properties(${TS_FILES} PROPERTIES OUTPUT_LOCATION "${CMAKE_CURRENT_BINARY_DIR}/lang") # set qm files output directory
qt_add_translation(QM_FILES ${TS_FILES}) # generate qm files
add_custom_command(
DEPENDS "${QM_FILES}"
OUTPUT "${CMAKE_BINARY_DIR}/cachyoskm_locale.qrc"
COMMAND cp "${CMAKE_SOURCE_DIR}/cachyoskm_locale.qrc" "${CMAKE_CURRENT_BINARY_DIR}"
WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}"
)
##
## Target
##
add_custom_command(
DEPENDS "${CMAKE_SOURCE_DIR}/src/mkoptions.py"
OUTPUT "${CMAKE_BINARY_DIR}/compile_options.hpp"
COMMAND ${Python3_EXECUTABLE} "${CMAKE_SOURCE_DIR}/src/mkoptions.py" "${CMAKE_CURRENT_BINARY_DIR}" "${CMAKE_SOURCE_DIR}"
WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}"
)
qt_add_executable(${PROJECT_NAME}
src/ini.hpp
src/string_utils.hpp
src/alpm_utils.hpp src/alpm_utils.cpp
src/utils.hpp src/utils.cpp
src/kernel.hpp src/kernel.cpp
src/aur_kernel.hpp src/aur_kernel.cpp
src/km-window.hpp src/km-window.cpp
"${CMAKE_BINARY_DIR}/compile_options.hpp"
src/config-options.hpp src/config-options.cpp
src/conf-window.hpp src/conf-window.cpp
src/scx_utils.hpp src/scx_utils.cpp
src/schedext-window.hpp src/schedext-window.cpp
src/conf-patches-page.hpp src/conf-patches-page.ui
src/conf-options-page.hpp src/conf-options-page.ui
src/km-window.ui src/conf-window.ui
src/schedext-window.ui
src/main.cpp "${CMAKE_BINARY_DIR}/cachyoskm_locale.qrc"
)
# Link this 'library' to use the warnings specified in CompilerWarnings.cmake
add_library(project_warnings INTERFACE)
set_project_warnings(project_warnings)
# Add linker configuration
configure_linker(project_options)
# sanitizer options if supported by compiler
enable_sanitizers(project_options)
include_directories(${CMAKE_SOURCE_DIR}/src ${CMAKE_BINARY_DIR})
corrosion_import_crate(MANIFEST_PATH "config-option-lib/Cargo.toml" FLAGS "${CARGO_FLAGS}")
corrosion_add_cxxbridge(config-option-lib-cxxbridge CRATE config_option_lib MANIFEST_PATH "config-option-lib/Cargo.toml" FILES lib.rs scx_loader_config.rs)
target_link_libraries(${PROJECT_NAME} PRIVATE project_warnings project_options Qt6::Widgets Qt6::Concurrent Threads::Threads fmt::fmt frozen::frozen config-option-lib-cxxbridge PkgConfig::LIBALPM PkgConfig::LIBGLIB)
option(ENABLE_UNITY "Enable Unity builds of projects" OFF)
if(ENABLE_UNITY)
# Add for any project you want to apply unity builds for
set_target_properties(${PROJECT_NAME} PROPERTIES UNITY_BUILD ON)
endif()
install(
TARGETS ${PROJECT_NAME}
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
)
install(
PROGRAMS ${CMAKE_SOURCE_DIR}/src/terminal-helper
DESTINATION ${CMAKE_INSTALL_LIBDIR}/cachyos-kernel-manager
)
install(
PROGRAMS ${CMAKE_SOURCE_DIR}/src/rootshell.sh
DESTINATION ${CMAKE_INSTALL_LIBDIR}/cachyos-kernel-manager
)
install(
FILES org.cachyos.KernelManager.pkexec.policy
DESTINATION "${POLKITQT-1_POLICY_FILES_INSTALL_DIR}"
)
install(
FILES org.cachyos.KernelManager.desktop
DESTINATION ${CMAKE_INSTALL_DATADIR}/applications
)
install(
FILES ${CMAKE_SOURCE_DIR}/icons/16x16/org.cachyos.KernelManager.png
DESTINATION ${CMAKE_INSTALL_DATADIR}/icons/hicolor/16x16/apps
)
install(
FILES ${CMAKE_SOURCE_DIR}/icons/22x22/org.cachyos.KernelManager.png
DESTINATION ${CMAKE_INSTALL_DATADIR}/icons/hicolor/22x22/apps
)
install(
FILES ${CMAKE_SOURCE_DIR}/icons/32x32/org.cachyos.KernelManager.png
DESTINATION ${CMAKE_INSTALL_DATADIR}/icons/hicolor/32x32/apps
)
install(
FILES ${CMAKE_SOURCE_DIR}/icons/44x44/org.cachyos.KernelManager.png
DESTINATION ${CMAKE_INSTALL_DATADIR}/icons/hicolor/44x44/apps
)
install(
FILES ${CMAKE_SOURCE_DIR}/icons/48x48/org.cachyos.KernelManager.png
DESTINATION ${CMAKE_INSTALL_DATADIR}/icons/hicolor/48x48/apps
)
install(
FILES ${CMAKE_SOURCE_DIR}/icons/64x64/org.cachyos.KernelManager.png
DESTINATION ${CMAKE_INSTALL_DATADIR}/icons/hicolor/64x64/apps
)
install(
FILES ${CMAKE_SOURCE_DIR}/icons/128x128/org.cachyos.KernelManager.png
DESTINATION ${CMAKE_INSTALL_DATADIR}/icons/hicolor/128x128/apps
)
install(
FILES ${CMAKE_SOURCE_DIR}/icons/150x150/org.cachyos.KernelManager.png
DESTINATION ${CMAKE_INSTALL_DATADIR}/icons/hicolor/150x150/apps
)
install(
FILES ${CMAKE_SOURCE_DIR}/icons/256x256/org.cachyos.KernelManager.png
DESTINATION ${CMAKE_INSTALL_DATADIR}/icons/hicolor/256x256/apps
)
install(
FILES ${CMAKE_SOURCE_DIR}/icons/310x310/org.cachyos.KernelManager.png
DESTINATION ${CMAKE_INSTALL_DATADIR}/icons/hicolor/310x310/apps
)