tuf-manager/meson.build

31 lines
572 B
Meson
Raw Normal View History

2020-08-04 23:09:05 -04:00
project(
2020-08-05 21:15:32 -04:00
'tuf-manager',
[
'c',
'vala'
],
version: '1.2.2',
2020-08-05 21:15:32 -04:00
license: 'BSD-3',
default_options:
[
'b_ndebug=if-release',
'c_std=c18',
2020-08-05 23:20:27 -04:00
'warning_level=2'
2020-08-05 21:15:32 -04:00
]
2020-08-04 23:09:05 -04:00
)
add_global_arguments(
2020-08-05 21:15:32 -04:00
'-DGETTEXT_PACKAGE="@0@"'.format(meson.project_name()),
language: 'c'
2020-08-04 23:09:05 -04:00
)
always_authenticated = get_option('always-authenticated')
build_cli = get_option('build-cli')
build_gui = get_option('build-gui')
2020-08-07 00:32:22 -04:00
build_tray = get_option('build-tray')
2020-08-04 23:09:05 -04:00
subdir('po')
subdir('data')
subdir('src')
subdir('docs')
subdir('script')