Skip to content

Commit

Permalink
Skips android once again if ANDROID_HOME is not defined, but for a di…
Browse files Browse the repository at this point in the history
…fferent reason now.
  • Loading branch information
lessthanoptimal committed Feb 7, 2024
1 parent 329aad2 commit 30122c4
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,11 @@ include 'examples','demonstrations','applications',
'integration:boofcv-all',
'integration:boofcv-javacv',"integration:boofcv-WebcamCapture",
'integration:boofcv-jcodec','integration:boofcv-swing',
'integration:boofcv-ffmpeg','integration:boofcv-pdf','integration:boofcv-kotlin',
'integration:boofcv-android'
'integration:boofcv-ffmpeg','integration:boofcv-pdf','integration:boofcv-kotlin'

// The Android build system requires ANDROID_HOME to be specific and point to the Android SDK
if (System.getenv()['ANDROID_HOME']) {
include 'integration:boofcv-android'
} else {
logger.warn('Skipping integration/android because ANDROID_HOME has not been set!')
}

0 comments on commit 30122c4

Please sign in to comment.