This commit is contained in:
Simon McVittie 2024-04-24 05:58:32 +08:00 committed by GitHub
commit 86a37e3d58
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 6 additions and 2 deletions

View File

@ -137,8 +137,12 @@ else
lib_glfw = cpp.find_library('glfw')
compiler_args += ['-DDXVK_WSI_GLFW']
endif
dxvk_name_prefix = 'libdxvk_'
if dxvk_wsi == 'sdl2'
dxvk_name_prefix = 'libdxvk_'
else
dxvk_name_prefix = 'libdxvk_@0@_'.format(dxvk_wsi)
endif
link_args += [
'-static-libgcc',