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('cinnamon') 19subdir('gnome-shell') 20subdir('gtk-2.0') 21subdir('gtk-3.0') 22subdir('gtk-4.0') 23subdir('metacity-1') 24subdir('plank') 25subdir('unity') 26subdir('xfwm4') 27