38 lines
819 B
Meson
38 lines
819 B
Meson
project('mod-manager', 'rust',
|
|
version: '0.1.0',
|
|
meson_version: '>= 0.62.0',
|
|
default_options: [ 'warning_level=2', 'werror=false', ],
|
|
)
|
|
|
|
i18n = import('i18n')
|
|
gnome = import('gnome')
|
|
|
|
|
|
base_id = 'dev.mnts.ModManager'
|
|
gettext_package = meson.project_name()
|
|
|
|
if get_option('profile') == 'development'
|
|
profile = 'Devel'
|
|
vcs_tag = run_command('git', 'rev-parse', '--short', 'HEAD').stdout().strip()
|
|
if vcs_tag == ''
|
|
version_suffix = '-devel'
|
|
else
|
|
version_suffix = '-@0@'.format(vcs_tag)
|
|
endif
|
|
application_id = '@0@.@1@'.format(base_id, profile)
|
|
else
|
|
profile = ''
|
|
version_suffix = ''
|
|
application_id = base_id
|
|
endif
|
|
|
|
|
|
subdir('data')
|
|
subdir('src')
|
|
subdir('po')
|
|
|
|
gnome.post_install(
|
|
glib_compile_schemas: true,
|
|
gtk_update_icon_cache: true,
|
|
update_desktop_database: true,
|
|
)
|