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-12-07 12:45:02 +01:00
|
|
|
'd3d11_input_layout.cpp',
|
2017-10-11 09:51:48 +02:00
|
|
|
'd3d11_main.cpp',
|
2017-11-29 16:23:33 +01:00
|
|
|
'd3d11_present.cpp',
|
2017-12-10 23:27:20 +01:00
|
|
|
'd3d11_rasterizer.cpp',
|
2017-12-09 20:49:56 +01:00
|
|
|
'd3d11_sampler.cpp',
|
2017-12-06 14:16:14 +01:00
|
|
|
'd3d11_shader.cpp',
|
2017-12-06 12:11:59 +01:00
|
|
|
'd3d11_state.cpp',
|
2017-11-27 15:51:53 +01:00
|
|
|
'd3d11_texture.cpp',
|
2017-10-11 09:51:48 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
d3d11_dll = shared_library('d3d11', d3d11_src,
|
2017-10-11 15:32:24 +02:00
|
|
|
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 ],
|
2017-10-11 15:32:24 +02:00
|
|
|
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('.') ])
|