diff options
author | Dylan Baker <[email protected]> | 2017-11-13 17:58:51 -0800 |
---|---|---|
committer | Dylan Baker <[email protected]> | 2017-12-04 14:36:58 -0800 |
commit | 6b4c7047d57178d3362a710ad503057c6a582ca3 (patch) | |
tree | 428d06c61e3044acaae3992f10fab034a47e298b /meson_options.txt | |
parent | 0ba909f0f111824223bc38563d1a6bc73e69c2cc (diff) |
meson: build gallium nine state_tracker
v2: - set d3d_drivers_path instead of dri_drivers_path
- Fix nine guard to check for all relavent gallium drivers
- Link with libswdri and libswkmsdri when necessary
- Fix pkg-config generation
- Add missing comma
Signed-off-by: Dylan Baker <[email protected]>
Reviewed-by: Eric Engestrom <[email protected]>
Diffstat (limited to 'meson_options.txt')
-rw-r--r-- | meson_options.txt | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/meson_options.txt b/meson_options.txt index 33b40478dbf..39b137cbeaf 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -115,6 +115,18 @@ option( description : 'enable gallium xa state tracker.', ) option( + 'gallium-nine', + type : 'boolean', + value : false, + description : 'build gallium "nine" Direct3D 9.x state tracker.', +) +option( + 'd3d-drivers-path', + type : 'string', + value : '', + description : 'Location of D3D drivers. Default: $libdir/d3d', +) +option( 'vulkan-drivers', type : 'string', value : 'auto', |