11 lines
296 B
Bash
11 lines
296 B
Bash
#!/bin/bash
|
|
|
|
source build_scripts/init.sh
|
|
|
|
print "${CYAN}=============[build_test]=============\n"
|
|
clear_dir bin
|
|
clear_dir obj
|
|
compile_c "$BUILD_TEST_C_ARGS" "$SRC_C $TESTS_C"
|
|
compile_cpp "$BUILD_TEST_CPP_ARGS" "$SRC_CPP $TESTS_CPP"
|
|
link "$BUILD_TEST_CPP_ARGS $BUILD_TEST_LINKER_ARGS" $TEST_FILE
|