1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2024-11-30 22:24:15 +01:00

[general] Remove _vk prefix from DLL names

Fixes #56.
This commit is contained in:
Philip Rebohle 2018-02-05 09:10:42 +01:00
parent 1a0a924c7d
commit ad81d0bfa5
No known key found for this signature in database
GPG Key ID: C8CC613427A31C99
2 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@ d3d11_src = [
'd3d11_util.cpp',
]
d3d11_dll = shared_library('d3d11_vk', d3d11_src,
d3d11_dll = shared_library('d3d11', d3d11_src,
name_prefix : '',
link_with : [ util_lib ],
dependencies : [ dxvk_dep, dxgi_dep, dxbc_dep ],

View File

@ -9,7 +9,7 @@ dxgi_src = [
'dxgi_swapchain.cpp',
]
dxgi_dll = shared_library('dxgi_vk', dxgi_src,
dxgi_dll = shared_library('dxgi', dxgi_src,
name_prefix : '',
link_with : [ util_lib ],
dependencies : [ dxvk_dep ],