Skip to content

Commit 0406eeb

Browse files
committed
Add meson.build file
This simply calls 'pip install . --break-system-packages' as a convenience wrapper so it can be included as a subproject in others that use the meson build system. To install, simply run 'meson setup build'. Build and install commands will not have any targets, but they will succeed nonetheless.
1 parent 4c8ed00 commit 0406eeb

1 file changed

Lines changed: 11 additions & 0 deletions

File tree

meson.build

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
project(
2+
'pywayfire',
3+
version: '3.2',
4+
license: 'MIT',
5+
meson_version: '>=0.55',
6+
)
7+
8+
dependency('wayfire', required: false)
9+
pip = find_program('pip')
10+
11+
message(run_command(pip, 'install', '.', '--break-system-packages', check: true).stdout().strip())

0 commit comments

Comments
 (0)