1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2025-01-18 20:52:10 +01:00
dxvk/src/vulkan/meson.build
Georg Lehmann 2550cff149 [build] Cleanup build system.
No changes except dropping support for msvc before 15.3.
2022-03-17 01:38:58 +00:00

18 lines
418 B
Meson

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 ],
)