mirror of
https://github.com/EduApps-CDG/OpenDX
synced 2024-12-30 09:45:37 +01:00
16 lines
439 B
Meson
16 lines
439 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, 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 ])
|