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 /include/meson.build | |
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 'include/meson.build')
-rw-r--r-- | include/meson.build | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/meson.build b/include/meson.build index 424d89acc83..e4dae91cede 100644 --- a/include/meson.build +++ b/include/meson.build @@ -20,6 +20,7 @@ inc_drm_uapi = include_directories('drm-uapi') inc_vulkan = include_directories('vulkan') +inc_d3d9 = include_directories('D3D9') if with_gles1 install_headers( @@ -70,3 +71,10 @@ endif if with_dri install_headers('GL/internal/dri_interface.h', subdir : 'GL/internal') endif + +if with_gallium_st_nine + install_headers( + 'd3dadapter/d3dadapter9.h', 'd3dadapter/drm.h', 'd3dadapter/present.h', + subdir : 'd3dadapter', + ) +endif |