summaryrefslogtreecommitdiffstats
path: root/meson.build
diff options
context:
space:
mode:
authorClément Sibille <clements@lisible.xyz>2025-03-15 20:54:47 +0100
committerClément Sibille <clements@lisible.xyz>2025-03-15 20:54:47 +0100
commit038c0c44d26a45554e3cc6257bc67d3fecb291cd (patch)
tree10a542754e92b1aedfaddabad946d1cce951ad5e /meson.build
Initial commit
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build13
1 files changed, 13 insertions, 0 deletions
diff --git a/meson.build b/meson.build
new file mode 100644
index 0000000..e3997cf
--- /dev/null
+++ b/meson.build
@@ -0,0 +1,13 @@
+project('visible-gltf', 'c', default_options: ['warning_level=3', 'c_std=c23'])
+
+sdl3_dep = dependency('sdl3')
+
+executable(
+ 'vgltf',
+ [
+ 'src/main.c',
+ 'src/log.c',
+ 'src/platform_sdl.c'
+ ],
+ dependencies: [sdl3_dep]
+)
Go back to lisible.xyz