summaryrefslogtreecommitdiff
path: root/meson.build
diff options
context:
space:
mode:
authorTomi Valkeinen <tomi.valkeinen@iki.fi>2020-12-18 15:01:45 +0200
committerTomi Valkeinen <tomi.valkeinen@iki.fi>2020-12-18 15:01:45 +0200
commitb12aab5d4bb45e77934d9838576a817bc8defe4b (patch)
tree736e186d7e39223a7bf8e905ac509910fe21591a /meson.build
parent09147f17de0e6f3e89bc92b452c6e5e8c72c5970 (diff)
meson: split "utils" option into libutils and utils
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@iki.fi>
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build5
1 files changed, 4 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index f76f8b7..cdc8cab 100644
--- a/meson.build
+++ b/meson.build
@@ -37,8 +37,11 @@ libdrmomap_dep = dependency('libdrm_omap', required : get_option('omap'))
subdir('kms++')
-if get_option('utils')
+if get_option('libutils')
subdir('kms++util')
+endif
+
+if get_option('utils')
subdir('utils')
endif