mirror of
https://github.com/doitsujin/dxvk.git
synced 2024-12-13 16:08:50 +01:00
f38ee85a39
* [build] do not use shared_library/objects property with MSVC * [util] use ./com/com_include.h instead of windef.h It is required for Windows 10 SDK. * [util] store thread procedure lambda in std::function * [dxgi] fix annoying MSVC warning warning C4099: 'IDXGIVkInteropDevice': type name first seen using 'class' now seen using 'struct'
44 lines
1.2 KiB
Meson
44 lines
1.2 KiB
Meson
d3d11_src = [
|
|
'd3d11_annotation.cpp',
|
|
'd3d11_blend.cpp',
|
|
'd3d11_buffer.cpp',
|
|
'd3d11_class_linkage.cpp',
|
|
'd3d11_cmdlist.cpp',
|
|
'd3d11_context.cpp',
|
|
'd3d11_context_def.cpp',
|
|
'd3d11_context_imm.cpp',
|
|
'd3d11_depth_stencil.cpp',
|
|
'd3d11_device.cpp',
|
|
'd3d11_enums.cpp',
|
|
'd3d11_input_layout.cpp',
|
|
'd3d11_interop.cpp',
|
|
'd3d11_main.cpp',
|
|
'd3d11_options.cpp',
|
|
'd3d11_present.cpp',
|
|
'd3d11_query.cpp',
|
|
'd3d11_rasterizer.cpp',
|
|
'd3d11_sampler.cpp',
|
|
'd3d11_shader.cpp',
|
|
'd3d11_state.cpp',
|
|
'd3d11_texture.cpp',
|
|
'd3d11_util.cpp',
|
|
'd3d11_view_dsv.cpp',
|
|
'd3d11_view_rtv.cpp',
|
|
'd3d11_view_srv.cpp',
|
|
'd3d11_view_uav.cpp',
|
|
]
|
|
|
|
d3d11_dll = shared_library('d3d11'+dll_ext, d3d11_src,
|
|
name_prefix : '',
|
|
link_with : [ util_lib ],
|
|
dependencies : [ lib_dxgi, dxbc_dep, dxvk_dep ],
|
|
include_directories : dxvk_include_path,
|
|
install : true,
|
|
objects : not dxvk_msvc ? 'd3d11'+def_spec_ext : [],
|
|
vs_module_defs : 'd3d11'+def_spec_ext,
|
|
override_options : ['cpp_std='+dxvk_cpp_std])
|
|
|
|
d3d11_dep = declare_dependency(
|
|
link_with : [ d3d11_dll ],
|
|
include_directories : [ dxvk_include_path, include_directories('.') ])
|