1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2025-01-19 05:52:11 +01:00
dxvk/src/vulkan/meson.build

18 lines
418 B
Meson
Raw Normal View History

vkcommon_src = files([
'vulkan_loader.cpp',
'vulkan_names.cpp',
'vulkan_presenter.cpp',
])
thread_dep = dependency('threads')
vkcommon_lib = static_library('vkcommon', vkcommon_src,
dependencies : [ thread_dep, lib_vulkan ],
include_directories : [ dxvk_include_path ],
)
vkcommon_dep = declare_dependency(
link_with : [ vkcommon_lib ],
include_directories : [ dxvk_include_path ],
)