aboutsummaryrefslogtreecommitdiff
path: root/meson.build
diff options
context:
space:
mode:
authorArslaan Pathan <[email protected]>2026-05-14 13:05:34 +1200
committerArslaan Pathan <[email protected]>2026-05-14 13:05:34 +1200
commit07b64f09a3b866520d8e4729f11f882780cdb6e3 (patch)
tree5f40efa2e381e3ef5a55d437271ff18a2e681757 /meson.build
downloadsimple-x11-window-07b64f09a3b866520d8e4729f11f882780cdb6e3.tar.xz
simple-x11-window-07b64f09a3b866520d8e4729f11f882780cdb6e3.zip
Initial commit
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build5
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)