mirror of
https://github.com/doitsujin/dxvk.git
synced 2024-12-14 09:23:53 +01:00
17 lines
465 B
Meson
17 lines
465 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 ],
|
|
override_options : ['cpp_std='+dxvk_cpp_std],
|
|
include_directories : [ dxvk_include_path ])
|
|
|
|
vkcommon_dep = declare_dependency(
|
|
link_with : [ vkcommon_lib ],
|
|
include_directories : [ dxvk_include_path ])
|