1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2024-12-14 09:23:53 +01:00
dxvk/src/d3d11/meson.build

22 lines
580 B
Meson
Raw Normal View History

2017-10-11 09:51:48 +02:00
d3d11_src = [
2017-10-15 21:38:09 +02:00
'd3d11_buffer.cpp',
2017-10-11 09:51:48 +02:00
'd3d11_context.cpp',
'd3d11_device.cpp',
2017-12-02 16:46:53 +01:00
'd3d11_enums.cpp',
2017-10-11 09:51:48 +02:00
'd3d11_main.cpp',
'd3d11_present.cpp',
2017-11-27 15:51:53 +01:00
'd3d11_texture.cpp',
'd3d11_view.cpp',
2017-10-11 09:51:48 +02:00
]
d3d11_dll = shared_library('d3d11', d3d11_src,
name_prefix : '',
2017-10-11 09:51:48 +02:00
link_with : [ util_lib ],
2017-10-16 17:50:39 +02:00
dependencies : [ dxvk_dep, dxgi_dep, dxbc_dep ],
include_directories : dxvk_include_path,
install : true)
2017-10-11 09:51:48 +02:00
d3d11_dep = declare_dependency(
link_with : [ d3d11_dll ],
include_directories : [ dxvk_include_path, include_directories('.') ])