TUF Manager allows control of the keyboard and fans of ASUS TUF laptops using the faustus driver module.
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.
|
project(
|
|
'tuf-manager',
|
|
[
|
|
'c',
|
|
'vala'
|
|
],
|
|
version: '1.2.2',
|
|
license: 'BSD-3',
|
|
default_options:
|
|
[
|
|
'b_ndebug=if-release',
|
|
'c_std=c18',
|
|
'warning_level=2'
|
|
]
|
|
)
|
|
add_global_arguments(
|
|
'-DGETTEXT_PACKAGE="@0@"'.format(meson.project_name()),
|
|
language: 'c'
|
|
)
|
|
|
|
always_authenticated = get_option('always-authenticated')
|
|
build_cli = get_option('build-cli')
|
|
build_gui = get_option('build-gui')
|
|
build_tray = get_option('build-tray')
|
|
|
|
subdir('po')
|
|
subdir('data')
|
|
subdir('src')
|
|
subdir('docs')
|
|
subdir('script')
|