Skip to content

Commit

Permalink
WesExamples/build.gradle: comments
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Jan 27, 2024
1 parent aa6b360 commit 5b8c5d9
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions WesExamples/build.gradle
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
// Gradle script to build the Wes/WesExamples sub-project

// Note: "common.gradle" in the root project contains additional initialization
// for this project. This initialization is applied in the "build.gradle"
// of the root project.

plugins {
id 'application'
id 'application' // to build Java applications
}

dependencies {
Expand Down Expand Up @@ -44,7 +46,7 @@ tasks.register('cleanSOs', Delete) { // extracted Linux and Android native libra
delete fileTree(dir: '.', include: '*.so')
}

// Register tasks to run the example apps:
// Register tasks to run specific apps:

tasks.register('AppChooser', JavaExec) {
mainClass = 'jme3utilities.test.wes.AppChooser'
Expand Down

0 comments on commit 5b8c5d9

Please sign in to comment.