summaryrefslogtreecommitdiff
path: root/platform/android/MapboxGLAndroidSDKTestApp/gradle-make.gradle
blob: 65d971cc961a7673712609f7ce6fb33026ae5343 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//
// Contains GL-native make commands
//

task makeClean(type: Exec) {
    workingDir '../../'
    commandLine 'make', 'clean'
}

task makeAndroid(type: Exec) {
    workingDir '../../'
    commandLine 'make', 'android'
}

task makeAndroidAll(type: Exec) {
    workingDir '../../'
    commandLine 'make', 'apackage'
}