cbuild/default_tasks/build_static_lib.sh
2024-07-12 01:55:58 +03:00

8 lines
170 B
Bash
Executable File

#!/usr/bin/env bash
# delete old objects
clean_dir "$OBJDIR/objects"
compile_c "$C_ARGS" "$SRC_C"
compile_cpp "$CPP_ARGS" "$SRC_CPP"
pack_static_lib "$STATIC_LIB_FILE"