From 00d24cd44aaccc25dd85457761cf167ab89d999c Mon Sep 17 00:00:00 2001 From: Clayton Craft Date: Mon, 15 Nov 2021 17:19:27 -0800 Subject: [PATCH] meson: actually install stuff This installs the exe and unl0kr conf file when you `meson install` --- meson.build | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 8fc2d9c..5c3f555 100644 --- a/meson.build +++ b/meson.build @@ -47,6 +47,8 @@ lvgl_sources = run_command('find-lvgl-sources.sh', 'lvgl').stdout().strip().spli lv_drivers_sources = run_command('find-lvgl-sources.sh', 'lv_drivers').stdout().strip().split('\n') +install_data(sources: 'unl0kr.conf', install_dir : get_option('sysconfdir')) + executable( 'unl0kr', sources: unl0kr_sources + squeek2lvgl_sources + lvgl_sources + lv_drivers_sources, @@ -55,5 +57,6 @@ executable( dependency('inih'), dependency('libinput'), dependency('xkbcommon') - ] + ], + install: true )