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.
39 lines
1.6 KiB
39 lines
1.6 KiB
cmake_minimum_required(VERSION 3.22)
|
|
|
|
project(lubuntu-installer-prompt VERSION 1.0.0 LANGUAGES CXX)
|
|
|
|
# Find the required Qt and KDE packages
|
|
find_package(ECM REQUIRED NO_MODULE)
|
|
set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH})
|
|
find_package(Qt5 REQUIRED COMPONENTS Core Widgets Network)
|
|
find_package(KF5 REQUIRED COMPONENTS NetworkManagerQt Notifications)
|
|
|
|
# Set the CMAKE variables for automatic code generation with Qt
|
|
set(CMAKE_AUTOMOC ON)
|
|
set(CMAKE_AUTORCC ON)
|
|
set(CMAKE_AUTOUIC ON)
|
|
set(CMAKE_CXX_STANDARD 23)
|
|
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
|
|
|
# Specify project source files
|
|
include_directories(${PROJECT_SOURCE_DIR}/src)
|
|
file(GLOB PROJECT_SOURCES
|
|
"${PROJECT_SOURCE_DIR}/src/*.cpp"
|
|
"${PROJECT_SOURCE_DIR}/src/*.h"
|
|
"${PROJECT_SOURCE_DIR}/src/*.ui"
|
|
)
|
|
|
|
# Add executable target with project source files
|
|
add_executable(lubuntu-installer-prompt ${PROJECT_SOURCES} src/resource.qrc)
|
|
|
|
# Link libraries with the executable target
|
|
target_link_libraries(lubuntu-installer-prompt Qt5::Widgets Qt5::Network KF5::NetworkManagerQt KF5::Notifications)
|
|
target_link_libraries(lubuntu-installer-prompt Qt5::Widgets KF5::NetworkManagerQt KF5::Notifications)
|
|
|
|
install(TARGETS lubuntu-installer-prompt DESTINATION bin)
|
|
install(PROGRAMS "scripts/lubuntu-installer" DESTINATION libexec)
|
|
install(PROGRAMS "scripts/start-lubuntu-live-env" DESTINATION bin)
|
|
install(FILES "img/background.png" DESTINATION share/lubuntu/installer-prompt)
|
|
install(FILES "lubuntu-live-environment.desktop" DESTINATION share/xsessions)
|
|
install(CODE "execute_process(COMMAND ${CMAKE_COMMAND} -E create_symlink /etc/xdg/xdg-Lubuntu /etc/xdg/xdg-lubuntu-live-environment)")
|