1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2024-12-05 01:24:14 +01:00
dxvk/src/meson.build

38 lines
701 B
Meson
Raw Normal View History

subdir('wsi')
2017-10-10 23:32:13 +02:00
subdir('util')
subdir('spirv')
subdir('vulkan')
2017-10-11 03:09:04 +02:00
subdir('dxvk')
if get_option('enable_dxgi')
subdir('dxgi')
endif
2022-08-31 16:59:58 +02:00
if get_option('enable_d3d10') or get_option('enable_d3d11')
subdir('dxbc')
endif
if get_option('enable_d3d11')
2022-11-28 13:45:37 +01:00
if not get_option('enable_dxgi')
error('DXGI is required for D3D11.')
endif
subdir('d3d11')
endif
if get_option('enable_d3d10')
if not get_option('enable_d3d11')
error('D3D11 is required for D3D10.')
endif
subdir('d3d10')
endif
if get_option('enable_d3d9')
subdir('dxso')
subdir('d3d9')
endif
# Nothing selected
2022-11-28 13:45:37 +01:00
if not get_option('enable_d3d9') and not get_option('enable_dxgi')
2022-08-31 16:59:58 +02:00
warning('Nothing selected to be built.?')
endif