summaryrefslogtreecommitdiffstats
path: root/meson.build
diff options
context:
space:
mode:
authorLibravatar bigfoot547 <[email protected]>2024-01-30 23:27:28 -0600
committerLibravatar bigfoot547 <[email protected]>2024-01-30 23:34:25 -0600
commit062bd8269c6b1ce9ba3279f36fe37d0a570c9e73 (patch)
treee14b14d0b7efe4d12405e128c7da07e6d34e736b /meson.build
initial commit
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build6
1 files changed, 6 insertions, 0 deletions
diff --git a/meson.build b/meson.build
new file mode 100644
index 0000000..11da057
--- /dev/null
+++ b/meson.build
@@ -0,0 +1,6 @@
+project('world', 'c')
+
+xxhash_dep = dependency('libxxhash', required : true, static : true)
+
+subdir('src')
+executable('world', libworld_sources, dependencies : [xxhash_dep], win_subsystem : 'console')