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.

24 lines
497 B

app_resource = gnome.compile_resources(app_id + '.src',
app_id + '.src.gresource.xml',
source_dir: '.',
gresource_bundle: true,
install: true,
install_dir : pkgdatadir
)
app_launcher = configure_file(
output : app_id,
input : app_id + '.in',
configuration: app_configuration
)
#install_data(app_launcher,
# install_dir: get_option('bindir'),
# install_mode: 'rwxr-xr-x'
#)
install_data(app_launcher,
install_dir: join_paths(get_option('datadir'), app_id),
install_mode: 'rwxr-xr-x'
)