1
0
Fork 0
mirror of https://github.com/hyprwm/Hyprland synced 2025-01-11 18:49:48 +01:00
Hyprland/hyprpm/CMakeLists.txt

17 lines
360 B
Text
Raw Normal View History

cmake_minimum_required(VERSION 3.19)
project(
hyprpm
DESCRIPTION "A Hyprland Plugin Manager"
)
file(GLOB_RECURSE SRCFILES CONFIGURE_DEPENDS "src/*.cpp")
set(CMAKE_CXX_STANDARD 23)
pkg_check_modules(tomlplusplus REQUIRED IMPORTED_TARGET tomlplusplus)
add_executable(hyprpm ${SRCFILES})
target_link_libraries(hyprpm PUBLIC PkgConfig::tomlplusplus)