mirror of
https://github.com/doitsujin/dxvk.git
synced 2025-04-06 18:57:31 +02:00
17 lines
380 B
Meson
17 lines
380 B
Meson
vkcommon_src = files([
|
|
'vulkan_loader.cpp',
|
|
'vulkan_names.cpp',
|
|
])
|
|
|
|
thread_dep = dependency('threads')
|
|
|
|
vkcommon_lib = static_library('vkcommon', vkcommon_src,
|
|
dependencies : [ thread_dep ],
|
|
include_directories : [ dxvk_include_path ],
|
|
)
|
|
|
|
vkcommon_dep = declare_dependency(
|
|
link_with : [ vkcommon_lib ],
|
|
include_directories : [ dxvk_include_path ],
|
|
)
|