forked from lessthanoptimal/BoofCV
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle
18 lines (16 loc) · 891 Bytes
/
settings.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
include 'examples','demonstrations','applications',
'main:ip','main:io','main:feature','main:geo','main:calibration','main:sfm','main:recognition',
'main:visualize','main:checks','main:learning','main:all',
'integration:xuggler','integration:applet',"integration:WebcamCapture",
'integration:jcodec'
// these are packages which require external files that must be manually downloaded or configured to compile
if (System.getenv()['ANDROID_HOME']) {
include 'integration:android'
} else {
logger.warn('Skipping integration/android because ANDROID_HOME has not been set! See integration/android/readme.txt')
}
if( file('./integration/openkinect/libfreenect').exists()) {
include 'integration:openkinect'
} else {
logger.warn('Skipping integration/openkinect because openkinect/libfreenect is missing! See integration/openkinect/readme.txt')
}