forked from alatnet/OpenPSVR
-
Notifications
You must be signed in to change notification settings - Fork 0
/
generate.sh
executable file
·46 lines (38 loc) · 1.2 KB
/
generate.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#!/bin/bash
set -eE
###########################################################################
# Author: Stephen O'Hair
#
# Purpose: Generates the openpsvr driver make project files for use on linux.
###########################################################################
# Initialise
PROJECT_ROOT=$PWD
#Function loads configuration properties and generates project files
main(){
# Generate the project files for PSMoveService
generateProjectFiles || return $?
# Exit batch script successfully
echo -e "\E[1;32mBUILD SUCCESS\E[;0m";
exit 0
}
#Function generates project files for the configured ide
generateProjectFiles(){
if [ ! -d "$PROJECT_ROOT/generated" ]; then
mkdir $PROJECT_ROOT/generated
fi
echo "Generating OpenPSVR Project files..."
echo "Running cmake in $PROJECT_ROOT"
cd $PROJECT_ROOT/generated
cmake .. -G "Unix Makefiles"
}
#Function to handle errors
function handleError() {
error_msg="GENERATE FAILED"
echo -e "\E[1;31m$error_msg\E[;0m";
exit 1;
}
# this will trap any errors or commands with non-zero exit status
# by calling function catch_errors()
trap handleError ERR;
# entry point of script
main