mirror of
https://gitlab.cvh-server.de/skrause/flashcards.git
synced 2025-12-12 06:41:38 +01:00
remove en, update ui, some minor changes
This commit is contained in:
132
meson.build
132
meson.build
@@ -1,7 +1,7 @@
|
||||
project('flashcards', 'c',
|
||||
version: '1.0.0',
|
||||
meson_version: '>= 1.0.0',
|
||||
default_options: [ 'warning_level=2', 'werror=false', 'c_std=gnu23', ],
|
||||
default_options: ['warning_level=2', 'c_std=gnu23'],
|
||||
)
|
||||
|
||||
flashcards_deps = [
|
||||
@@ -26,71 +26,71 @@ config_h.set_quoted('LOCALEDIR', get_option('prefix') / get_option('localedir'))
|
||||
configure_file(output: 'config.h', configuration: config_h)
|
||||
add_project_arguments(['-I' + meson.project_build_root()], language: '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')
|
||||
# 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')
|
||||
|
||||
executable('flashcards',
|
||||
sourcefiles,
|
||||
|
||||
Reference in New Issue
Block a user