mirror of
https://github.com/doitsujin/dxvk.git
synced 2025-03-10 10:29:25 +01:00
This is unnecessary even on mingw, and leads to duplicating the .def file on the linking command line which winegcc complains about.
26 lines
671 B
Meson
26 lines
671 B
Meson
dxgi_res = wrc_generator.process('version.rc')
|
|
|
|
dxgi_src = [
|
|
'dxgi_adapter.cpp',
|
|
'dxgi_enums.cpp',
|
|
'dxgi_factory.cpp',
|
|
'dxgi_format.cpp',
|
|
'dxgi_main.cpp',
|
|
'dxgi_monitor.cpp',
|
|
'dxgi_options.cpp',
|
|
'dxgi_output.cpp',
|
|
'dxgi_swapchain.cpp',
|
|
]
|
|
|
|
dxgi_dll = shared_library('dxgi'+dll_ext, dxgi_src, dxgi_res,
|
|
name_prefix : '',
|
|
dependencies : [ dxvk_dep ],
|
|
include_directories : dxvk_include_path,
|
|
install : true,
|
|
vs_module_defs : 'dxgi'+def_spec_ext,
|
|
override_options : ['cpp_std='+dxvk_cpp_std])
|
|
|
|
dxgi_dep = declare_dependency(
|
|
link_with : [ dxgi_dll ],
|
|
include_directories : [ dxvk_include_path ])
|