mirror of
https://github.com/hyprwm/Hyprland
synced 2026-01-04 03:10:13 +01:00
24 lines
644 B
CMake
24 lines
644 B
CMake
cmake_minimum_required(VERSION 3.19)
|
|
|
|
project(start-hyprland DESCRIPTION "Hyprland watchdog binary")
|
|
|
|
include(GNUInstallDirs)
|
|
|
|
set(CMAKE_CXX_STANDARD 26)
|
|
set(CMAKE_EXPORT_COMPILE_COMMANDS TRUE)
|
|
|
|
find_package(PkgConfig REQUIRED)
|
|
|
|
pkg_check_modules(starthyprland_deps REQUIRED IMPORTED_TARGET hyprutils>=0.10.3)
|
|
|
|
file(GLOB_RECURSE SRCFILES CONFIGURE_DEPENDS "src/*.cpp")
|
|
|
|
add_executable(start-hyprland ${SRCFILES})
|
|
|
|
target_link_libraries(start-hyprland PUBLIC PkgConfig::starthyprland_deps)
|
|
|
|
install(TARGETS start-hyprland)
|
|
|
|
if(CMAKE_BUILD_TYPE MATCHES Debug OR CMAKE_BUILD_TYPE MATCHES DEBUG)
|
|
set(CMAKE_EXECUTABLE_ENABLE_EXPORTS TRUE)
|
|
endif()
|