added tlibtoml submodule

This commit is contained in:
2025-11-27 01:46:44 +05:00
parent f5169e8a8f
commit c263d02b36
15 changed files with 108 additions and 95 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='tlibc bearssl'
ENABLED_DEPENDENCIES='bearssl tlibc tlibtoml'
# OBJDIR structure:
# ├── objects/ - Compiled object files. Cleans on each call of build task
@@ -35,7 +35,10 @@ OBJDIR="obj"
OUTDIR="bin"
STATIC_LIB_FILE="$PROJECT.a"
INCLUDE="-Isrc -Iinclude -I$DEPENDENCIES_DIR/BearSSL/inc -I$DEPENDENCIES_DIR/tlibc/include"
INCLUDE="-Isrc -Iinclude
-I$DEPENDENCIES_DIR/BearSSL/inc
-I$DEPENDENCIES_DIR/tlibc/include
-I$DEPENDENCIES_DIR/tlibtoml/include"
# OS-specific options
case "$OS" in