Skip to content

Commit

Permalink
Add verbosity to PdTest cleanNative command
Browse files Browse the repository at this point in the history
  • Loading branch information
joebowbeer committed Feb 8, 2016
1 parent b1c85bf commit 2135e99
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions PdTest/build.gradle
Expand Up @@ -50,15 +50,15 @@ android {

tasks.create(name: 'buildNative', type: Exec, description: 'Compile JNI source via NDK') {
commandLine getNdkBuildExecutablePath(),
'V=1',
'-C', file('jni').absolutePath,
'-j', Runtime.runtime.availableProcessors(),
'all',
'V=1',
'NDK_DEBUG=1'
}

tasks.create(name: 'cleanNative', type: Exec, description: 'Clean JNI object files') {
commandLine getNdkBuildExecutablePath(), '-C', file('jni').absolutePath, 'clean'
commandLine getNdkBuildExecutablePath(), 'V=1', '-C', file('jni').absolutePath, 'clean'
}

clean.dependsOn 'cleanNative'
Expand Down

0 comments on commit 2135e99

Please sign in to comment.