kerep/build_scripts/build_configurations/build_static_lib.sh
2022-08-10 21:58:01 +06:00

11 lines
298 B
Bash

#!/bin/bash
source build_scripts/init.sh
print "${CYAN}==========[build_shared_lib]==========\n"
clear_dir "$OUTDIR"
clear_dir "$OBJDIR"
compile_c "$BUILD_STATIC_LIB_C_ARGS" "$SRC_C tests/test_marshalling.c"
compile_cpp "$BUILD_STATIC_LIB_CPP_ARGS" "$SRC_CPP"
pack_static_lib "$STATIC_LIB_FILE"