summaryrefslogtreecommitdiffstats
path: root/meson.build
blob: ebfbfff9e2528d95da85c79764b50c1723ded3e1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
project('vkguide', 'c', default_options: ['c_std=c17', 'warning_level=3'])

cc = meson.get_compiler('c')
sdl3_dep = dependency('SDL3')
vulkan_dep = dependency('vulkan')

executable(
  'vkguide',
  ['src/main.c'],
  dependencies: [sdl3_dep, vulkan_dep]
)
Go back to lisible.xyz