summaryrefslogtreecommitdiffstats
path: root/meson.build
blob: e3997cf428ec99c2c9b974ee241c8d241965f344 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
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