enlightenment/data/config/meson.build

21 lines
609 B
Meson
Raw Permalink Normal View History

2017-07-21 13:20:03 -07:00
dir_config = join_paths(dir_data, 'enlightenment/data/config')
eet_cmd = get_option('eet')
if eet_cmd == ''
eet_cmd = join_paths(dep_eet.get_pkgconfig_variable('prefix'),
'bin', 'eet')
endif
2017-07-21 13:20:03 -07:00
custom_target('profile.src',
2018-12-27 09:16:33 -08:00
input : 'profile.src',
command : [eet_cmd, '-i', '@OUTPUT@', 'config', '@INPUT@', '1'],
output : ['profile.cfg'],
install : true,
install_dir : dir_config,
install_mode : 'rw-r--r--'
)
2017-07-21 13:20:03 -07:00
subdir('default')
subdir('standard')
subdir('tiling')