mirror of
https://github.com/doitsujin/dxvk.git
synced 2025-03-06 20:58:37 +01:00
[meson] Only use the libdisplay-info subproject as a fallback
This commit is contained in:
parent
e2a46a347d
commit
c423819e90
1 changed files with 6 additions and 2 deletions
|
@ -39,8 +39,12 @@ dxvk_include_dirs = [
|
||||||
'./include/spirv/include'
|
'./include/spirv/include'
|
||||||
]
|
]
|
||||||
|
|
||||||
proj_displayinfo = subproject('libdisplay-info')
|
dep_displayinfo = dependency(
|
||||||
dep_displayinfo = proj_displayinfo.get_variable('di_dep')
|
'libdisplay-info',
|
||||||
|
version: ['>= 0.0.0', '< 0.2.0'],
|
||||||
|
fallback: ['libdisplay-info', 'di_dep'],
|
||||||
|
default_options: ['default_library=static'],
|
||||||
|
)
|
||||||
|
|
||||||
if platform == 'windows'
|
if platform == 'windows'
|
||||||
compiler_args += [
|
compiler_args += [
|
||||||
|
|
Loading…
Add table
Reference in a new issue