You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
303 B
Bash
17 lines
303 B
Bash
#! /bin/sh
|
|
# This script expects to be run from the parent directory
|
|
# ex. scripts/build.sh
|
|
|
|
#Colors
|
|
RED='\033[0;31m'
|
|
GREEN='\033[0;32m'
|
|
NC='\033[0m'
|
|
|
|
echo building project...
|
|
cmake --build build/
|
|
if [ $? -eq 0 ]; then
|
|
echo "${GREEN}BUILD SUCCESSFUL${NC}"
|
|
else
|
|
echo "${RED}BUILD FAILED${NC}"
|
|
fi
|