This repository has been archived by the owner on May 3, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 47
/
generate.sh
executable file
·79 lines (63 loc) · 2.39 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#!/bin/bash
set -eE
###########################################################################
# Author: Stephen O'Hair
#
# Purpose: Generates the openvr driver make project files for use on linux.
###########################################################################
# Initialise
PROJECT_ROOT=$PWD
BUILD_PROPS_FILE=$PROJECT_ROOT/build.properties
#Function loads configuration properties and generates project files
main(){
# Load configuration properties
loadBuildProperties || return $?
# Generate the project files for PSMoveService
generateProjectFiles || return $?
# Exit batch script successfully
echo -e "\E[1;32mBUILD SUCCESS\E[;0m";
exit 0
}
#Function loads build properties into local variables
loadBuildProperties(){
echo Loading properties from $BUILD_PROPS_FILE
PSM_PACKAGE_URL=$(loadBuildProperty "psmoveservice.package.url" $BUILD_PROPS_FILE)
echo PSM_PACKAGE_URL=$PSM_PACKAGE_URL
OPENVR_PACKAGE_URL=$(loadBuildProperty "openvr.package.url" $BUILD_PROPS_FILE)
echo OPENVR_PACKAGE_URL=$OPENVR_PACKAGE_URL
DRIVER_VERSION=$(loadBuildProperty "driver.version" $BUILD_PROPS_FILE)
echo DRIVER_VERSION=$DRIVER_VERSION
BUILD_GENERATOR=$(loadBuildProperty "cmake.build.generator.linux" $BUILD_PROPS_FILE)
echo BUILD_GENERATOR=$BUILD_GENERATOR
BUILD_TYPE=$(loadBuildProperty "build.type" $BUILD_PROPS_FILE)
echo BUILD_TYPE=$BUILD_TYPE
echo Properties loaded successfully
}
#Fuction returns a configured build property value for the given key
loadBuildProperty(){
local PROP_KEY=$1
local FILE=$2
grep "$PROP_KEY" $FILE | cut -d'=' -f2
}
#Function generates project files for the configured ide
generateProjectFiles(){
if [ ! -d "$PROJECT_ROOT/generated" ]; then
mkdir $PROJECT_ROOT/generated
fi
echo "Rebuilding PSMoveSteamVRBridge Project files..."
echo "Running cmake in $PROJECT_ROOT"
cd $PROJECT_ROOT/generated
#TODO - This should use cmakes configure file instead
cmake .. -G "$BUILD_GENERATOR" -DDRIVER_VERSION="$DRIVER_VERSION" -DPSM_PACKAGE_URL="$PSM_PACKAGE_URL" -DOPENVR_PACKAGE_URL="$OPENVR_PACKAGE_URL"
}
#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