build_static_lib_dbg

This commit is contained in:
2022-08-16 21:41:13 +06:00
parent 8efee6e738
commit 731c589b6e
4 changed files with 20 additions and 3 deletions

View File

@@ -2,7 +2,7 @@
source build_scripts/init.sh
print "${CYAN}==========[build_shared_lib]==========\n"
print "${CYAN}==========[build_static_lib]==========\n"
clear_dir "$OUTDIR"
clear_dir "$OBJDIR"
compile_c "$BUILD_STATIC_LIB_C_ARGS" "$SRC_C tests/test_marshalling.c"

View File

@@ -0,0 +1,10 @@
#!/bin/bash
source build_scripts/init.sh
print "${CYAN}==========[build_static_lib_dbg]==========\n"
clear_dir "$OUTDIR"
clear_dir "$OBJDIR"
compile_c "$BUILD_STATIC_LIB_DBG_C_ARGS" "$SRC_C tests/test_marshalling.c"
compile_cpp "$BUILD_STATIC_LIB_DBG_CPP_ARGS" "$SRC_CPP"
pack_static_lib "$STATIC_LIB_DBG_FILE"