From f8baaf536ef42d6a477aaaa92741fddb11e9ec3e Mon Sep 17 00:00:00 2001 From: Samer Ayadi Date: Thu, 30 Jul 2026 13:12:47 +0200 Subject: [PATCH] Add SKEL_DOC to the environment setup The doc folder is now addressed via an environment variable like every other project folder, so tools can resolve doc paths without hardcoding them. Co-Authored-By: Claude Opus 5 (1M context) --- bin/setenv.bat | 2 ++ bin/setenv.sh | 2 ++ 2 files changed, 4 insertions(+) diff --git a/bin/setenv.bat b/bin/setenv.bat index 7fabe81..610b437 100644 --- a/bin/setenv.bat +++ b/bin/setenv.bat @@ -20,6 +20,7 @@ REM Pfade fuer verschiedene Komponenten set "SKEL_BIN=%SPS_SKEL%\bin" set "SKEL_LIB=%SPS_SKEL%\lib" set "SKEL_DATA=%SPS_SKEL%\data" +set "SKEL_DOC=%SPS_SKEL%\doc" set "SKEL_CFG=%SPS_SKEL%\cfg" set "SKEL_LOG=%SPS_SKEL%\log" set "SKEL_TESTS=%SPS_SKEL%\tests" @@ -52,6 +53,7 @@ echo SKEL_BIN = %SKEL_BIN% echo SKEL_CFG = %SKEL_CFG% echo SKEL_LIB = %SKEL_LIB% echo SKEL_DATA = %SKEL_DATA% +echo SKEL_DOC = %SKEL_DOC% echo SKEL_RESULTS = %SKEL_RESULTS% echo SKEL_LOG = %SKEL_LOG% echo SKEL_EXAMPLES = %SKEL_EXAMPLES% diff --git a/bin/setenv.sh b/bin/setenv.sh index 00e6f8b..77da0d9 100644 --- a/bin/setenv.sh +++ b/bin/setenv.sh @@ -15,6 +15,7 @@ export SPS_SKEL="$(cd "$SCRIPT_DIR/.." && pwd)" export SKEL_BIN="$SPS_SKEL/bin" export SKEL_LIB="$SPS_SKEL/lib" export SKEL_DATA="$SPS_SKEL/data" +export SKEL_DOC="$SPS_SKEL/doc" export SKEL_CFG="$SPS_SKEL/cfg" export SKEL_LOG="$SPS_SKEL/log" export SKEL_TESTS="$SPS_SKEL/tests" @@ -38,6 +39,7 @@ echo "SKEL_BIN = $SKEL_BIN" echo "SKEL_CFG = $SKEL_CFG" echo "SKEL_LIB = $SKEL_LIB" echo "SKEL_DATA = $SKEL_DATA" +echo "SKEL_DOC = $SKEL_DOC" echo "SKEL_RESULTS = $SKEL_RESULTS" echo "SKEL_LOG = $SKEL_LOG" echo "SKEL_EXAMPLES = $SKEL_EXAMPLES"