mirror of
https://github.com/doitsujin/dxvk.git
synced 2025-01-18 20:52:10 +01:00
2550cff149
No changes except dropping support for msvc before 15.3.
18 lines
418 B
Meson
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 ],
|
|
)
|