diff options
| author | Clément Sibille <clements@lisible.xyz> | 2025-03-15 20:54:47 +0100 |
|---|---|---|
| committer | Clément Sibille <clements@lisible.xyz> | 2025-03-15 20:54:47 +0100 |
| commit | 038c0c44d26a45554e3cc6257bc67d3fecb291cd (patch) | |
| tree | 10a542754e92b1aedfaddabad946d1cce951ad5e /meson.build | |
Initial commit
Diffstat (limited to 'meson.build')
| -rw-r--r-- | meson.build | 13 |
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] +) |
