# project name and programming language
project('com.github.yourusername.yourrepositoryname', 'vala', 'c')
# Create a new executable, list the files we want to compile, list the dependencies we need, and install
'src' / 'Application.vala',
# Install our .desktop file so the Applications Menu will see it
'data' / 'hello-again.desktop',
install_dir: get_option('datadir') / 'applications',
rename: meson.project_name() + '.desktop'
# Install our .metainfo.xml file so AppCenter will see it
'data' / 'hello-again.metainfo.xml',
install_dir: get_option('datadir') / 'metainfo',
rename: meson.project_name() + '.metainfo.xml'