aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Engestrom <eric.engestrom@imgtec.com>2017-04-25 11:53:50 +0100
committerGerd Hoffmann <kraxel@redhat.com>2017-04-26 07:32:22 +0200
commite0387b0b191a55bf9e1859e8c0882666f21c16e2 (patch)
tree05dfe86f7283aad59ce79c85af164f2f4dbb88db
parentfc53497204c324d3b72995bd7a06d765fcf3f92c (diff)
downloaddrminfo-e0387b0b191a55bf9e1859e8c0882666f21c16e2.tar.gz
meson: install drminfo & drmtest
`gtktest` had an explicit `install: false`, but it's the other way around: if unspecified, the file doesn't get installed; you have to explicitely ask for it with `install: true`. Signed-off-by: Eric Engestrom <eric.engestrom@imgtec.com> Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
-rw-r--r--meson.build6
1 files changed, 4 insertions, 2 deletions
diff --git a/meson.build b/meson.build
index 4722bf9..8312179 100644
--- a/meson.build
+++ b/meson.build
@@ -24,10 +24,12 @@ gtktest_deps = [ gtk3_dep,
executable('drminfo',
sources : drminfo_srcs,
- dependencies : drminfo_deps)
+ dependencies : drminfo_deps,
+ install : true)
executable('drmtest',
sources : drmtest_srcs,
- dependencies : drmtest_deps)
+ dependencies : drmtest_deps,
+ install : true)
executable('gtktest',
sources : gtktest_srcs,
dependencies : gtktest_deps,