summaryrefslogtreecommitdiffstats
path: root/src/meson.build
diff options
context:
space:
mode:
authorAlexander von Gluck IV <[email protected]>2018-02-16 16:56:31 -0600
committerAlexander von Gluck IV <[email protected]>2018-02-16 16:56:34 -0600
commit834d221512fae8dd290d347fec071c4adbe140ed (patch)
treefc12d7bd18f90dd2909e9c9399081f92701804b5 /src/meson.build
parent7b283544dc76efe5216120b178574ff561605e23 (diff)
meson: Add Haiku platform support v4
Reviewed-by: Dylan Baker <[email protected]>
Diffstat (limited to 'src/meson.build')
-rw-r--r--src/meson.build7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/meson.build b/src/meson.build
index 730b2ff6e41..4d5637f0aaf 100644
--- a/src/meson.build
+++ b/src/meson.build
@@ -64,7 +64,12 @@ if with_dri_i965 or with_intel_vk
endif
subdir('mesa')
subdir('loader')
-subdir('glx')
+if with_platform_haiku
+ subdir('hgl')
+endif
+if with_glx != 'disabled'
+ subdir('glx')
+endif
if with_gbm
subdir('gbm')
else