1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2025-01-10 07:46:08 +01:00
dxvk/src/dxgi/meson.build
2017-10-11 15:31:36 +02:00

20 lines
509 B
Meson

dxgi_src = [
'dxgi_adapter.cpp',
'dxgi_device.cpp',
'dxgi_factory.cpp',
'dxgi_main.cpp',
'dxgi_output.cpp',
'dxgi_swapchain.cpp',
]
dxgi_dll = shared_library('dxgi', dxgi_src,
name_prefix : '',
link_with : [ util_lib ],
dependencies : [ dxvk_dep ],
include_directories : dxvk_include_path,
install : true)
dxgi_dep = declare_dependency(
link_with : [ dxgi_dll ],
include_directories : [ dxvk_include_path, include_directories('.') ])