forked from JoshBlake/RGBDToolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcloneaddons.sh
executable file
·40 lines (32 loc) · 1018 Bytes
/
cloneaddons.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
#!/bin/bash
# Dependencies for RGBDToolkit
#make sure you are in the RGBDToolkit project when you run this script
cd ../../addons
#passing no arguments means read only
if [ -z $1 ]; then
PREFIX="git clone https://github.com/"
echo "Cloning read-only"
else
PREFIX="git clone git@github.com:"
echo "Cloning writable"
fi
${PREFIX}Flightphase/ofxGameCamera
${PREFIX}Flightphase/ofxRange
${PREFIX}Flightphase/ofxTween
${PREFIX}Flightphase/ofxMSAInteractiveObject
${PREFIX}Flightphase/ofxTextInputField
${PREFIX}obviousjim/ofxRGBDepth
${PREFIX}obviousjim/ofxCv
${PREFIX}obviousjim/ofxKinect
${PREFIX}obviousjim/ofxOpenNI
${PREFIX}obviousjim/ofxMSATimer
${PREFIX}YCAMInterlab/ofxTimecode
${PREFIX}YCAMInterlab/ofxTimeline
${PREFIX}obviousjim/ofxObjLoader
cd ofxCv/
git checkout opencv-2.3
cd ..
# you also need to replace ofxOpenCv/libs/opencv with this link:
# https://github.com/kylemcdonald/ofxCv/downloads
# opencv-2.3.-osx.zip — OpenCV 2.3 library
#=======