diff options
| author | Arslaan Pathan <[email protected]> | 2026-05-14 13:05:34 +1200 |
|---|---|---|
| committer | Arslaan Pathan <[email protected]> | 2026-05-14 13:05:34 +1200 |
| commit | 07b64f09a3b866520d8e4729f11f882780cdb6e3 (patch) | |
| tree | 5f40efa2e381e3ef5a55d437271ff18a2e681757 /meson.build | |
| download | simple-x11-window-07b64f09a3b866520d8e4729f11f882780cdb6e3.tar.xz simple-x11-window-07b64f09a3b866520d8e4729f11f882780cdb6e3.zip | |
Initial commit
Diffstat (limited to 'meson.build')
| -rw-r--r-- | meson.build | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/meson.build b/meson.build new file mode 100644 index 0000000..d3985a2 --- /dev/null +++ b/meson.build @@ -0,0 +1,5 @@ +project('simple-x11-window', 'c') + +x11_dep = dependency('x11') + +executable('simple-x11-window', 'main.c', dependencies: x11_dep) |
