From e6f70404ae031fca0ecb2cd5af21683bcbee9181 Mon Sep 17 00:00:00 2001 From: Martijn Braam Date: Fri, 24 Jan 2020 01:03:47 +0100 Subject: [PATCH] Added installation config to meson --- meson.build | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 5c0149c..75b7376 100644 --- a/meson.build +++ b/meson.build @@ -1,3 +1,6 @@ project('camera', 'c') gtkdep = dependency('gtk+-3.0') -executable('camera', 'main.c', 'ini.c', dependencies : gtkdep) \ No newline at end of file +executable('camera', 'main.c', 'ini.c', dependencies : gtkdep, install : true) + +install_data(['camera.glade', 'camera.css'], + install_dir : get_option('datadir') / 'camera/ui') \ No newline at end of file