mirror of
https://github.com/hyprwm/Hyprland.git
synced 2026-02-04 15:45:42 +00:00
25 lines
644 B
CMake
25 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()
|