From edc89367fee8abcc8104e27b1d7171e0872393b3 Mon Sep 17 00:00:00 2001 From: Gerd Hoffmann Date: Fri, 12 May 2017 14:56:53 +0200 Subject: meson: install app defaults file --- meson.build | 3 +++ 1 file changed, 3 insertions(+) (limited to 'meson.build') diff --git a/meson.build b/meson.build index dab8151..a6aa1de 100644 --- a/meson.build +++ b/meson.build @@ -8,6 +8,8 @@ add_global_arguments('-Wno-pointer-sign', language : 'c') config = configuration_data() version = run_command('cat', 'VERSION') config.set_quoted('VERSION', version.stdout().strip()) +x11resrun = run_command('scripts/x11resdir.sh', get_option('prefix')) +x11resdir = x11resrun.stdout().strip() # pkg-config deps freetype_dep = dependency('freetype2') @@ -155,3 +157,4 @@ executable('ida', include_directories : trans_inc, install : true) install_man('man/ida.1') +install_data('Ida.ad', install_dir : x11resdir) -- cgit