meson.build
ASCII text
1foreach theme: themes 2index_theme_conf = configuration_data() 3index_theme_conf.set('theme_name', theme['name']) 4 5index_theme = configure_file( 6input: 'index.theme.in', 7output: '@0@.index.theme'.format(theme['name']), 8configuration: index_theme_conf, 9) 10 11install_data( 12index_theme, 13rename: 'index.theme', 14install_dir: theme['dir'], 15) 16endforeach 17 18subdir('chrome') 19subdir('cinnamon') 20subdir('gnome-shell') 21subdir('gtk-2.0') 22subdir('gtk-3.0') 23subdir('gtk-4.0') 24subdir('metacity-1') 25subdir('plank') 26subdir('unity') 27subdir('xfwm4') 28