hyprpm: Add hyprpm, a Hyprland Plugin Manager (#4072)

This commit is contained in:
Vaxry 2023-12-07 10:41:09 +00:00 committed by GitHub
parent 62a8d0be5c
commit d360550546
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
19 changed files with 1428 additions and 8 deletions

10
hyprpm/src/meson.build Normal file
View file

@ -0,0 +1,10 @@
globber = run_command('sh', '-c', 'find . -name "*.cpp" | sort', check: true)
src = globber.stdout().strip().split('\n')
executable('hyprpm', src,
dependencies: [
dependency('threads'),
dependency('tomlplusplus')
],
install : true
)