20 lines
442 B
Meson
20 lines
442 B
Meson
project('os-installer',
|
|
version: '0.1.2',
|
|
meson_version: '>= 0.50.0',
|
|
default_options: [ 'warning_level=2',
|
|
],
|
|
license: 'GPL-3.0-or-later',
|
|
)
|
|
|
|
i18n = import('i18n')
|
|
|
|
application_id = 'com.github.p3732.OS-Installer'
|
|
application_url = 'https://gitlab.gnome.org/p3732/os-installer/'
|
|
|
|
subdir('.build_files')
|
|
subdir('data')
|
|
subdir('src')
|
|
subdir('po')
|
|
|
|
meson.add_install_script('.build_files/postinstall.py')
|