1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2024-12-01 16:24:12 +01:00

[meta] Remove redundant linker entries for the utils library

Fixes #651.
This commit is contained in:
Philip Rebohle 2018-09-19 21:00:44 +02:00
parent b11343cf52
commit 03a760bec6
No known key found for this signature in database
GPG Key ID: C8CC613427A31C99
3 changed files with 0 additions and 5 deletions

View File

@ -8,7 +8,6 @@ d3d10_deps += meson.get_cross_property('winelib', false) ? lib_d3d11 : d3d11_dep
d3d10_core_dll = shared_library('d3d10core'+dll_ext, d3d10_main_src,
name_prefix : '',
link_with : [ util_lib ],
dependencies : [ d3d10_deps, dxbc_dep, dxvk_dep ],
include_directories : dxvk_include_path,
install : true,
@ -18,7 +17,6 @@ d3d10_core_dll = shared_library('d3d10core'+dll_ext, d3d10_main_src,
d3d10_dll = shared_library('d3d10'+dll_ext, d3d10_main_src,
name_prefix : '',
link_with : [ util_lib ],
dependencies : [ d3d10_deps, dxbc_dep, dxvk_dep ],
include_directories : dxvk_include_path,
install : true,
@ -28,7 +26,6 @@ d3d10_dll = shared_library('d3d10'+dll_ext, d3d10_main_src,
d3d10_1_dll = shared_library('d3d10_1'+dll_ext, d3d10_main_src,
name_prefix : '',
link_with : [ util_lib ],
dependencies : [ d3d10_deps, dxbc_dep, dxvk_dep ],
include_directories : dxvk_include_path,
install : true,

View File

@ -49,7 +49,6 @@ d3d11_src = [
d3d11_dll = shared_library('d3d11'+dll_ext, d3d11_src + d3d10_src,
name_prefix : '',
link_with : [ util_lib ],
dependencies : [ lib_dxgi, dxbc_dep, dxvk_dep ],
include_directories : dxvk_include_path,
install : true,

View File

@ -18,7 +18,6 @@ dxgi_src = [
dxgi_dll = shared_library('dxgi'+dll_ext, dxgi_src, glsl_generator.process(dxgi_shaders),
name_prefix : '',
link_with : [ util_lib ],
dependencies : [ dxvk_dep ],
include_directories : dxvk_include_path,
install : true,