Native UI
This commit is contained in:
parent
2df26b8ce0
commit
bf75b8b652
23 changed files with 841 additions and 5 deletions
79
native/meson.build
Normal file
79
native/meson.build
Normal file
|
|
@ -0,0 +1,79 @@
|
|||
i18n = import('i18n')
|
||||
gnome = import('gnome')
|
||||
cc = meson.get_compiler('c')
|
||||
|
||||
project_c_args = []
|
||||
test_c_args = [
|
||||
'-Wcast-align',
|
||||
'-Wdeclaration-after-statement',
|
||||
'-Werror=address',
|
||||
'-Werror=array-bounds',
|
||||
'-Werror=empty-body',
|
||||
'-Werror=implicit',
|
||||
'-Werror=implicit-function-declaration',
|
||||
'-Werror=incompatible-pointer-types',
|
||||
'-Werror=init-self',
|
||||
'-Werror=int-conversion',
|
||||
'-Werror=int-to-pointer-cast',
|
||||
'-Werror=main',
|
||||
'-Werror=misleading-indentation',
|
||||
'-Werror=missing-braces',
|
||||
'-Werror=missing-include-dirs',
|
||||
'-Werror=nonnull',
|
||||
'-Werror=overflow',
|
||||
'-Werror=parenthesis',
|
||||
'-Werror=pointer-arith',
|
||||
'-Werror=pointer-to-int-cast',
|
||||
'-Werror=redundant-decls',
|
||||
'-Werror=return-type',
|
||||
'-Werror=sequence-point',
|
||||
'-Werror=shadow',
|
||||
'-Werror=strict-prototypes',
|
||||
'-Werror=trigraphs',
|
||||
'-Werror=undef',
|
||||
'-Werror=write-strings',
|
||||
'-Wformat-nonliteral',
|
||||
'-Wignored-qualifiers',
|
||||
'-Wimplicit-function-declaration',
|
||||
'-Wlogical-op',
|
||||
'-Wmissing-declarations',
|
||||
'-Wmissing-format-attribute',
|
||||
'-Wmissing-include-dirs',
|
||||
'-Wmissing-noreturn',
|
||||
'-Wnested-externs',
|
||||
'-Wno-cast-function-type',
|
||||
'-Wno-dangling-pointer',
|
||||
'-Wno-missing-field-initializers',
|
||||
'-Wno-sign-compare',
|
||||
'-Wno-unused-parameter',
|
||||
'-Wold-style-definition',
|
||||
'-Wpointer-arith',
|
||||
'-Wredundant-decls',
|
||||
'-Wstrict-prototypes',
|
||||
'-Wswitch-default',
|
||||
'-Wswitch-enum',
|
||||
'-Wundef',
|
||||
'-Wuninitialized',
|
||||
'-Wunused',
|
||||
'-fno-strict-aliasing',
|
||||
['-Werror=format-security', '-Werror=format=2'],
|
||||
]
|
||||
if get_option('buildtype') != 'plain'
|
||||
test_c_args += '-fstack-protector-strong'
|
||||
endif
|
||||
foreach arg: test_c_args
|
||||
if cc.has_multi_arguments(arg)
|
||||
project_c_args += arg
|
||||
endif
|
||||
endforeach
|
||||
add_project_arguments(project_c_args, language: 'c')
|
||||
|
||||
liveschedule_sources = []
|
||||
subdir('data')
|
||||
subdir('src')
|
||||
|
||||
# TODO: UNCOMMENT WHEN YOU FIGURE OUT WHY THIS IS FAILING
|
||||
#gnome.post_install(
|
||||
# glib_compile_schemas: true,
|
||||
# gtk_update_icon_cache: true,
|
||||
# update_desktop_database: true)
|
||||
Loading…
Add table
Add a link
Reference in a new issue