-
Notifications
You must be signed in to change notification settings - Fork 1
/
cloneaddons.sh
executable file
·53 lines (48 loc) · 1.48 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
#!/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 [email protected]:"
echo "Cloning writable"
fi
#private, must be read
git clone [email protected]:rezaali/ofxExtras
git clone https://github.com/rezaali/ofxUI
cd ofxUI
git checkout develop
cd ..
git clone [email protected]:rezaali/ofxColorPalettes
git clone [email protected]:obviousjim/ofxOcean
git clone https://github.com/satoruhiga/ofxCocoaGLView
git clone https://github.com/satoruhiga/ofxPCL
git clone https://github.com/memo/ofxMSAObjCPointer
git clone https://github.com/memo/ofxMSACore
git clone https://github.com/roymacdonald/ofxCameraSaveLoad
git clone https://github.com/memo/ofxMSAPhysics
git clone https://github.com/memo/ofxMSAObjCPointer
${PREFIX}rezaali/ofxGenerative
${PREFIX}obviousjim/ofxAVFVideoPlayer
${PREFIX}Flightphase/ofxGameCamera
${PREFIX}Flightphase/ofxRange
${PREFIX}Flightphase/ofxTween
${PREFIX}Flightphase/ofxMSAInteractiveObject
${PREFIX}Flightphase/ofxTextInputField
${PREFIX}obviousjim/ofxRGBDepth
cd ofxRGBDepth
git checkout develop
cd ..
${PREFIX}obviousjim/ofxCv
${PREFIX}obviousjim/ofxKinect
${PREFIX}obviousjim/ofxOpenNI
${PREFIX}obviousjim/ofxMSATimer
${PREFIX}YCAMInterlab/ofxTimecode
${PREFIX}YCAMInterlab/ofxTimeline
cd ofxTimeline
git checkout develop
cd ..
${PREFIX}obviousjim/ofxObjLoader