1
0
mirror of https://gitlab.cvh-server.de/skrause/flashcards.git synced 2025-12-12 06:41:38 +01:00

small fixes and description

This commit is contained in:
2025-02-10 17:43:14 +01:00
parent 1ea9bb36c6
commit ca7a3dde58
4 changed files with 58 additions and 24 deletions

View File

@@ -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=gnu11', ],
default_options: [ 'warning_level=2', 'werror=false', 'c_std=gnu23', ],
)
flashcards_deps = [
@@ -90,7 +90,7 @@ foreach arg: test_c_args
project_c_args += arg
endif
endforeach
# add_project_arguments(project_c_args, language: 'c')
add_project_arguments(project_c_args, language: 'c')
executable('flashcards',
sourcefiles,
@@ -103,4 +103,4 @@ gnome.post_install(
glib_compile_schemas: true,
gtk_update_icon_cache: true,
update_desktop_database: true,
)
)