You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
662 B
23 lines
662 B
6 years ago
|
dir_config = join_paths(dir_data, 'enlightenment/data/config')
|
||
|
|
||
6 years ago
|
eet_cmd = get_option('eet')
|
||
|
if eet_cmd == ''
|
||
|
eet_cmd = join_paths(dep_eet.get_pkgconfig_variable('prefix'),
|
||
|
'bin', 'eet')
|
||
|
endif
|
||
6 years ago
|
|
||
6 years ago
|
custom_target('profile.src',
|
||
6 years ago
|
input : 'profile.src',
|
||
6 years ago
|
command : [eet_cmd, '-i', '@OUTPUT@', 'config', '@INPUT@', '1'],
|
||
6 years ago
|
output : ['profile.cfg'],
|
||
|
install : true,
|
||
|
install_dir: dir_config
|
||
|
)
|
||
6 years ago
|
out = join_paths(dir_config, 'profile.cfg')
|
||
|
meson.add_install_script(chmod, 'a+r', out)
|
||
6 years ago
|
|
||
|
subdir('default')
|
||
|
subdir('mobile')
|
||
|
subdir('standard')
|
||
|
subdir('tiling')
|