mirror of
https://github.com/doitsujin/dxvk.git
synced 2024-12-13 16:08:50 +01:00
26 lines
675 B
Meson
26 lines
675 B
Meson
d3d11_src = [
|
|
'd3d11_buffer.cpp',
|
|
'd3d11_context.cpp',
|
|
'd3d11_device.cpp',
|
|
'd3d11_enums.cpp',
|
|
'd3d11_input_layout.cpp',
|
|
'd3d11_main.cpp',
|
|
'd3d11_present.cpp',
|
|
'd3d11_shader.cpp',
|
|
'd3d11_state.cpp',
|
|
'd3d11_state_rs.cpp',
|
|
'd3d11_texture.cpp',
|
|
'd3d11_view.cpp',
|
|
]
|
|
|
|
d3d11_dll = shared_library('d3d11', d3d11_src,
|
|
name_prefix : '',
|
|
link_with : [ util_lib ],
|
|
dependencies : [ dxvk_dep, dxgi_dep, dxbc_dep ],
|
|
include_directories : dxvk_include_path,
|
|
install : true)
|
|
|
|
d3d11_dep = declare_dependency(
|
|
link_with : [ d3d11_dll ],
|
|
include_directories : [ dxvk_include_path, include_directories('.') ])
|