mirror of
https://github.com/thorvg/thorvg.git
synced 2025-06-20 06:52:03 +00:00
33 lines
779 B
Meson
33 lines
779 B
Meson
source_file = [
|
|
'tvgWgBindGroups.h',
|
|
'tvgWgCommon.h',
|
|
'tvgWgCompositor.h',
|
|
'tvgWgGeometry.h',
|
|
'tvgWgPipelines.h',
|
|
'tvgWgRenderData.h',
|
|
'tvgWgRenderer.h',
|
|
'tvgWgRenderTarget.h',
|
|
'tvgWgShaderSrc.h',
|
|
'tvgWgShaderTypes.h',
|
|
'tvgWgBindGroups.cpp',
|
|
'tvgWgCommon.cpp',
|
|
'tvgWgCompositor.cpp',
|
|
'tvgWgGeometry.cpp',
|
|
'tvgWgPipelines.cpp',
|
|
'tvgWgRenderData.cpp',
|
|
'tvgWgRenderer.cpp',
|
|
'tvgWgRenderTarget.cpp',
|
|
'tvgWgShaderSrc.cpp',
|
|
'tvgWgShaderTypes.cpp'
|
|
]
|
|
|
|
wgpu_dep = []
|
|
if host_machine.system() != 'emscripten'
|
|
wgpu_dep = dependency('wgpu_native')
|
|
endif
|
|
|
|
engine_dep += [declare_dependency(
|
|
dependencies : wgpu_dep,
|
|
include_directories : include_directories('.'),
|
|
sources : source_file
|
|
)]
|