Starting Out

Signed-off-by: Robear Selwans <robear.selwans@outlook.com>
This commit is contained in:
2024-12-09 12:51:29 +02:00
parent 7e6be94c65
commit 4ec57bbd79
47 changed files with 2069 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
project('spvref', 'c')
vulkan_dep = dependency('vulkan').partial_dependency(compile_args : true)
spvref_inc = include_directories('.')
spvref_src = files('spirv_reflect.c')
spvref_lib = static_library(
'spvref',
spvref_src,
include_directories: spvref_inc,
dependencies: vulkan_dep
)
spvref_dep = declare_dependency(
link_with: spvref_lib,
include_directories: spvref_inc,
dependencies: vulkan_dep
)
meson.override_dependency('spvref', spvref_dep)