chore: structure project documentation

This commit is contained in:
grayTerminal-sh 2026-07-06 14:27:56 +02:00
parent de0393f9f3
commit 8c8361b4c2
6 changed files with 13 additions and 2 deletions

Binary file not shown.

BIN
bdd.sqlite Normal file

Binary file not shown.

11
enquete-gui/.gitignore vendored Normal file
View file

@ -0,0 +1,11 @@
# Build
enquete-gui
*.o
# SQLite temporaires
*.sqlite-shm
*.sqlite-wal
# Neovim / LSP
.cache/
compile_commands.json

View file

@ -2,7 +2,7 @@ CC = gcc
PKG_CONFIG = pkg-config
CFLAGS = -Wall -Wextra -Wpedantic -std=c23 -g \
CFLAGS = -Wall -Wextra -Wpedantic -Werror -std=c17 -g \
-Iinclude \
$(shell $(PKG_CONFIG) --cflags gtk4 sqlite3)

View file

@ -16,7 +16,7 @@ int main(int argc, char **argv)
{
sqlite3 *db = NULL;
if (db_open(&db, "Enquete.sqlite") != 0) {
if (db_open(&db, "../../03_Chronologie/Enquete.sqlite") != 0) {
return 1;
}