summaryrefslogtreecommitdiff
path: root/meson.build
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2022-11-30 21:17:22 +0100
committerxengineering <me@xengineering.eu>2022-11-30 21:17:22 +0100
commitc233d1b454efc50f913dd48fa11d223950f48947 (patch)
tree7cb3c226bdf49c006d5c913af19c66b58ffc6b4d /meson.build
parent2550cae55865a1f87ae3ec7b71071994ff009c3b (diff)
downloadlimox-c233d1b454efc50f913dd48fa11d223950f48947.tar
limox-c233d1b454efc50f913dd48fa11d223950f48947.tar.zst
limox-c233d1b454efc50f913dd48fa11d223950f48947.zip
Switch from meson to Makefile
A Makefile is enough for this project because it has a very simpel structure. The additional complexity of meson is not necessary and furthermore I am more used to Makefiles.
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build3
1 files changed, 0 insertions, 3 deletions
diff --git a/meson.build b/meson.build
deleted file mode 100644
index a675aa6..0000000
--- a/meson.build
+++ /dev/null
@@ -1,3 +0,0 @@
-project('LimoX', 'c')
-sdl2dep = dependency('sdl2')
-executable('limox', ['main.c', 'gui.c', 'xmpp.c'], dependencies : [sdl2dep])