92 lines
3 KiB
CMake
92 lines
3 KiB
CMake
cmake_minimum_required(VERSION 3.19)
|
|
|
|
if(NOT DEFINED VERSION)
|
|
execute_process(COMMAND git describe --tags --abbrev=0
|
|
WORKING_DIRECTORY "${CMAKE_SOURCE_DIR}"
|
|
OUTPUT_VARIABLE VERSION
|
|
OUTPUT_STRIP_TRAILING_WHITESPACE
|
|
)
|
|
|
|
if("${VERSION}" STREQUAL "")
|
|
message(FATAL_ERROR "VERSION is not set and failed to get from git")
|
|
endif()
|
|
endif()
|
|
|
|
if(NOT DEFINED GIT_REVISION)
|
|
execute_process(COMMAND git rev-parse HEAD
|
|
WORKING_DIRECTORY "${CMAKE_SOURCE_DIR}"
|
|
OUTPUT_VARIABLE GIT_REVISION
|
|
OUTPUT_STRIP_TRAILING_WHITESPACE
|
|
)
|
|
|
|
if("${GIT_REVISION}" STREQUAL "")
|
|
message(FATAL_ERROR "GIT_REVISION is not set and failed to get from git")
|
|
endif()
|
|
endif()
|
|
|
|
string(REGEX REPLACE "^v" "" VERSION "${VERSION}")
|
|
|
|
project(caelestia-shell VERSION ${VERSION} LANGUAGES CXX)
|
|
|
|
set(CMAKE_CXX_STANDARD 20)
|
|
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
|
set(CMAKE_CXX_EXTENSIONS OFF)
|
|
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/lib")
|
|
|
|
set(DISTRIBUTOR "Unset" CACHE STRING "Distributor")
|
|
set(ENABLE_MODULES "extras;plugin;shell;m3shapes" CACHE STRING "Modules to build/install")
|
|
set(INSTALL_LIBDIR "usr/lib/caelestia" CACHE STRING "Library install dir")
|
|
set(INSTALL_QMLDIR "usr/lib/qt6/qml" CACHE STRING "QML install dir")
|
|
set(INSTALL_QSCONFDIR "etc/xdg/quickshell/caelestia" CACHE STRING "Quickshell config install dir")
|
|
|
|
add_compile_options(
|
|
-Wall -Wextra -Wpedantic -Wshadow -Wconversion
|
|
-Wold-style-cast -Wnull-dereference -Wdouble-promotion
|
|
-Wformat=2 -Wfloat-equal -Woverloaded-virtual
|
|
-Wsign-conversion -Wredundant-decls -Wswitch
|
|
-Wunreachable-code
|
|
)
|
|
|
|
if(CMAKE_CXX_COMPILER_ID MATCHES "Clang")
|
|
add_compile_options(-Wunused-lambda-capture)
|
|
endif()
|
|
|
|
if("extras" IN_LIST ENABLE_MODULES)
|
|
add_subdirectory(extras)
|
|
endif()
|
|
|
|
if("plugin" IN_LIST ENABLE_MODULES)
|
|
add_subdirectory(plugin)
|
|
endif()
|
|
|
|
if("shell" IN_LIST ENABLE_MODULES)
|
|
foreach(dir assets components modules services utils)
|
|
install(DIRECTORY ${dir} DESTINATION "${INSTALL_QSCONFDIR}")
|
|
endforeach()
|
|
|
|
file(READ shell.qml SHELL_QML)
|
|
string(REPLACE "settings.watchFiles: true" "settings.watchFiles: false" SHELL_QML "${SHELL_QML}")
|
|
file(WRITE "${CMAKE_BINARY_DIR}/qml/shell.qml" "${SHELL_QML}")
|
|
install(FILES "${CMAKE_BINARY_DIR}/qml/shell.qml" DESTINATION "${INSTALL_QSCONFDIR}")
|
|
|
|
install(FILES LICENSE DESTINATION "${INSTALL_QSCONFDIR}")
|
|
endif()
|
|
|
|
if("m3shapes" IN_LIST ENABLE_MODULES)
|
|
message(STATUS "Fetching M3Shapes module")
|
|
include(FetchContent)
|
|
set(M3SHAPES_REV bdc327b29f95394a732baf3c9b19658ba23755b6)
|
|
FetchContent_Declare(
|
|
m3shapes_external
|
|
GIT_REPOSITORY https://github.com/soramanew/m3shapes.git
|
|
GIT_TAG ${M3SHAPES_REV}
|
|
SOURCE_DIR "${CMAKE_BINARY_DIR}/_deps/m3shapes-${M3SHAPES_REV}"
|
|
)
|
|
FetchContent_MakeAvailable(m3shapes_external)
|
|
message(STATUS "Done fetching M3Shapes module")
|
|
|
|
# Fix m3shapes wrong rpath
|
|
if(TARGET m3shapesplugin)
|
|
set_target_properties(m3shapesplugin PROPERTIES INSTALL_RPATH "$ORIGIN")
|
|
endif()
|
|
endif()
|