summaryrefslogtreecommitdiffstats
path: root/meson.build
diff options
context:
space:
mode:
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build9
1 files changed, 9 insertions, 0 deletions
diff --git a/meson.build b/meson.build
new file mode 100644
index 0000000..4419e05
--- /dev/null
+++ b/meson.build
@@ -0,0 +1,9 @@
+project('usurpation', 'c',
+ license : 'LGPL2.1',
+ default_options : ['c_std=gnu11', 'buildtype=release', 'warning_level=2'])
+
+progname = 'alg'
+
+subdir('src')
+
+executable(progname, sources, install : true)