1
0
mirror of https://gitlab.cvh-server.de/skrause/flashcards.git synced 2026-03-16 04:30:15 +01:00

small fixes and description

This commit is contained in:
2026-03-06 15:48:10 +01:00
parent 5284acb936
commit 25540434b8
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,
)
)