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