replaced idb with sqlite

This commit is contained in:
2025-12-13 03:44:46 +05:00
parent 084a1828b2
commit 72696dea70
9 changed files with 39 additions and 636 deletions

View File

@@ -24,7 +24,7 @@ SRC_CPP="$(find src -name '*.cpp')"
# See cbuild/example_dependency_configs
DEPENDENCY_CONFIGS_DIR='dependencies'
# List of dependency config files in DEPENDENCY_CONFIGS_DIR separated by space.
ENABLED_DEPENDENCIES='bearssl tlibc tlibtoml'
ENABLED_DEPENDENCIES='bearssl tlibc tlibtoml tsqlite'
# OBJDIR structure:
# ├── objects/ - Compiled object files. Cleans on each call of build task
@@ -46,13 +46,13 @@ case "$OS" in
EXEC_FILE="$PROJECT.exe"
SHARED_LIB_FILE="$PROJECT.dll"
INCLUDE="$INCLUDE "
LINKER_LIBS="-static -lpthread -lws2_32"
LINKER_LIBS="-static -lpthread -lws2_32 -lsqlite3"
;;
LINUX)
EXEC_FILE="$PROJECT"
SHARED_LIB_FILE="$PROJECT.so"
INCLUDE="$INCLUDE "
LINKER_LIBS=""
LINKER_LIBS="-lsqlite3"
;;
*)
error "operating system $OS has no configuration variants"