hyprpm: Add hyprpm, a Hyprland Plugin Manager (#4072)
This commit is contained in:
parent
62a8d0be5c
commit
d360550546
19 changed files with 1428 additions and 8 deletions
14
hyprpm/CMakeLists.txt
Normal file
14
hyprpm/CMakeLists.txt
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
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(deps REQUIRED IMPORTED_TARGET tomlplusplus)
|
||||
|
||||
add_executable(hyprpm ${SRCFILES})
|
||||
Loading…
Add table
Add a link
Reference in a new issue