The Meson Build System
http://mesonbuild.com/
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.
15 lines
338 B
15 lines
338 B
6 years ago
|
dgen = find_program('desktopgenerator.py')
|
||
|
|
||
|
desktop_in_file = custom_target('something.desktop.in',
|
||
|
input : ['something.desktop.in.in'],
|
||
|
output : 'something.desktop.in',
|
||
|
command : [dgen, '@INPUT@', '@OUTPUT@'],
|
||
|
)
|
||
|
|
||
|
i18n.merge_file(
|
||
|
input : desktop_in_file,
|
||
|
output : 'something.desktop',
|
||
|
type : 'desktop',
|
||
|
po_dir : '../po',
|
||
|
)
|