CMake: fmt

This commit is contained in:
Mihai Fufezan 2024-07-18 20:43:28 +03:00
parent 2d774e6f32
commit ee6ca4d6c5
Signed by: fufexan
SSH Key Fingerprint: SHA256:SdnKmEpJrDu1+2UO1QpB/Eg4HKcdDi6n+xSRqFNJVpg
1 changed files with 52 additions and 38 deletions

View File

@ -3,30 +3,27 @@ cmake_minimum_required(VERSION 3.19)
file(READ "${CMAKE_SOURCE_DIR}/VERSION" VER_RAW) file(READ "${CMAKE_SOURCE_DIR}/VERSION" VER_RAW)
string(STRIP ${VER_RAW} VERSION) string(STRIP ${VER_RAW} VERSION)
project(hypridle project(
DESCRIPTION "An idle management daemon for Hyprland" hypridle
VERSION ${VERSION} DESCRIPTION "An idle management daemon for Hyprland"
) VERSION ${VERSION})
set(CMAKE_MESSAGE_LOG_LEVEL "STATUS") set(CMAKE_MESSAGE_LOG_LEVEL "STATUS")
if(CMAKE_BUILD_TYPE MATCHES Debug OR CMAKE_BUILD_TYPE MATCHES DEBUG) if(CMAKE_BUILD_TYPE MATCHES Debug OR CMAKE_BUILD_TYPE MATCHES DEBUG)
message(STATUS "Configuring hypridle in Debug with CMake") message(STATUS "Configuring hypridle in Debug with CMake")
add_compile_definitions(HYPRLAND_DEBUG) add_compile_definitions(HYPRLAND_DEBUG)
else() else()
add_compile_options(-O3) add_compile_options(-O3)
message(STATUS "Configuring hypridle in Release with CMake") message(STATUS "Configuring hypridle in Release with CMake")
endif() endif()
include_directories( include_directories(. "protocols/")
.
"protocols/"
)
# configure # configure
set(CMAKE_CXX_STANDARD 23) set(CMAKE_CXX_STANDARD 23)
add_compile_options(-Wall -Wextra -Wno-unused-parameter -Wno-unused-value add_compile_options(-Wall -Wextra -Wno-unused-parameter -Wno-unused-value
-Wno-missing-field-initializers -Wno-narrowing) -Wno-missing-field-initializers -Wno-narrowing)
configure_file(systemd/hypridle.service.in systemd/hypridle.service @ONLY) configure_file(systemd/hypridle.service.in systemd/hypridle.service @ONLY)
# dependencies # dependencies
@ -34,7 +31,15 @@ message(STATUS "Checking deps...")
find_package(Threads REQUIRED) find_package(Threads REQUIRED)
find_package(PkgConfig REQUIRED) find_package(PkgConfig REQUIRED)
pkg_check_modules(deps REQUIRED IMPORTED_TARGET wayland-client wayland-protocols hyprlang>=0.4.0 hyprutils>=0.2.0 sdbus-c++) pkg_check_modules(
deps
REQUIRED
IMPORTED_TARGET
wayland-client
wayland-protocols
hyprlang>=0.4.0
hyprutils>=0.2.0
sdbus-c++)
file(GLOB_RECURSE SRCFILES CONFIGURE_DEPENDS "src/*.cpp") file(GLOB_RECURSE SRCFILES CONFIGURE_DEPENDS "src/*.cpp")
add_executable(hypridle ${SRCFILES}) add_executable(hypridle ${SRCFILES})
@ -44,35 +49,44 @@ target_link_libraries(hypridle PRIVATE rt Threads::Threads PkgConfig::deps)
find_program(WaylandScanner NAMES wayland-scanner) find_program(WaylandScanner NAMES wayland-scanner)
message(STATUS "Found WaylandScanner at ${WaylandScanner}") message(STATUS "Found WaylandScanner at ${WaylandScanner}")
execute_process( execute_process(
COMMAND pkg-config --variable=pkgdatadir wayland-protocols COMMAND pkg-config --variable=pkgdatadir wayland-protocols
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR} WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
OUTPUT_VARIABLE WAYLAND_PROTOCOLS_DIR OUTPUT_VARIABLE WAYLAND_PROTOCOLS_DIR
OUTPUT_STRIP_TRAILING_WHITESPACE) OUTPUT_STRIP_TRAILING_WHITESPACE)
message(STATUS "Found wayland-protocols at ${WAYLAND_PROTOCOLS_DIR}") message(STATUS "Found wayland-protocols at ${WAYLAND_PROTOCOLS_DIR}")
function(protocol protoPath protoName external) function(protocol protoPath protoName external)
if (external) if(external)
execute_process( execute_process(
COMMAND ${WaylandScanner} client-header ${protoPath} protocols/${protoName}-protocol.h COMMAND ${WaylandScanner} client-header ${protoPath}
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}) protocols/${protoName}-protocol.h
execute_process( WORKING_DIRECTORY ${CMAKE_SOURCE_DIR})
COMMAND ${WaylandScanner} private-code ${protoPath} protocols/${protoName}-protocol.c execute_process(
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}) COMMAND ${WaylandScanner} private-code ${protoPath}
target_sources(hypridle PRIVATE protocols/${protoName}-protocol.c) protocols/${protoName}-protocol.c
else() WORKING_DIRECTORY ${CMAKE_SOURCE_DIR})
execute_process( target_sources(hypridle PRIVATE protocols/${protoName}-protocol.c)
COMMAND ${WaylandScanner} client-header ${WAYLAND_PROTOCOLS_DIR}/${protoPath} protocols/${protoName}-protocol.h else()
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}) execute_process(
execute_process( COMMAND
COMMAND ${WaylandScanner} private-code ${WAYLAND_PROTOCOLS_DIR}/${protoPath} protocols/${protoName}-protocol.c ${WaylandScanner} client-header ${WAYLAND_PROTOCOLS_DIR}/${protoPath}
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}) protocols/${protoName}-protocol.h
target_sources(hypridle PRIVATE protocols/${protoName}-protocol.c) WORKING_DIRECTORY ${CMAKE_SOURCE_DIR})
endif() execute_process(
COMMAND
${WaylandScanner} private-code ${WAYLAND_PROTOCOLS_DIR}/${protoPath}
protocols/${protoName}-protocol.c
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR})
target_sources(hypridle PRIVATE protocols/${protoName}-protocol.c)
endif()
endfunction() endfunction()
make_directory(${CMAKE_SOURCE_DIR}/protocols) # we don't ship any custom ones so the dir won't be there make_directory(${CMAKE_SOURCE_DIR}/protocols) # we don't ship any custom ones so
protocol("staging/ext-idle-notify/ext-idle-notify-v1.xml" "ext-idle-notify-v1" false) # the dir won't be there
protocol("staging/ext-idle-notify/ext-idle-notify-v1.xml" "ext-idle-notify-v1"
false)
# Installation # Installation
install(TARGETS hypridle) install(TARGETS hypridle)
install(FILES ${CMAKE_BINARY_DIR}/systemd/hypridle.service DESTINATION "lib/systemd/user") install(FILES ${CMAKE_BINARY_DIR}/systemd/hypridle.service
DESTINATION "lib/systemd/user")