meson.build
ASCII text
1foreach theme: themes 2unity_dir = join_paths(theme['dir'], 'unity') 3 4if theme['color'] != '-light' 5unity_window_buttons_dir = 'window-buttons' 6else 7unity_window_buttons_dir = 'window-buttons-light' 8endif 9 10install_subdir( 11unity_window_buttons_dir, 12strip_directory: true, 13install_dir: unity_dir, 14) 15 16install_subdir( 17'dash-buttons', 18strip_directory: true, 19install_dir: unity_dir, 20) 21 22install_subdir( 23'launcher', 24strip_directory: true, 25install_dir: unity_dir, 26) 27 28install_data( 29'dash-widgets.json', 30install_dir: unity_dir, 31) 32endforeach 33