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.
21 lines
384 B
Bash
21 lines
384 B
Bash
#!/bin/bash
|
|
if [ "$#" -lt 1 ]; then
|
|
echo ""
|
|
echo "Please type: $0 [Debug|RelWithDebInfo|Release|MinSizeRel]"
|
|
echo ""
|
|
exit
|
|
fi
|
|
|
|
EMS_DIR="cmake-ems-"$1
|
|
|
|
if [ ! -d "$EMS_DIR" ] || [ ! -f "$EMS_DIR/Makefile" ]; then
|
|
echo ""
|
|
echo "Have you generate Makefile?"
|
|
echo " please run: ./emsCMakeGen.sh"
|
|
echo ""
|
|
else
|
|
cd $EMS_DIR
|
|
make
|
|
fi
|
|
|