diff options
author | Phil Burk <[email protected]> | 2021-08-25 17:43:00 -0700 |
---|---|---|
committer | GitHub <[email protected]> | 2021-08-25 17:43:00 -0700 |
commit | f4925c614cc6ace95049473734513bacc77afc85 (patch) | |
tree | 36763ee3375b75ea95b9841ca6092377ab7a33de | |
parent | f50c1ac6b5597d828ec663852d750ceedc29e631 (diff) |
add gradle build info to README.md
-rw-r--r-- | README.md | 29 |
1 files changed, 24 insertions, 5 deletions
@@ -1,5 +1,4 @@ -JSyn -==== +# JSyn JSyn is a modular audio synthesizer for Java by Phil Burk. @@ -19,16 +18,36 @@ The JSyn source code is available at: https://github.com/philburk/jsyn -To build JSyn, use ant. Just enter: +## Building JSyn + +You can build JSyn using either Ant or Gradle. + +### Build Using Ant + +Enter: cd jsyn ant -The resulting jar will be placed in "/dist/lib/". +The resulting jar will be placed in "dist/lib/". To run the built-in test App on a desktop, enter something like this: java -jar dist/lib/jsyn-20160203.jar but with the correct date. -JSyn - Copyright 1997-2014 Mobileer Inc +### Build Using Gradle + +Enter: + + cd jsyn + ./gradlew assemble + +The resulting jar will be placed in "build/libs/". +To run the built-in test App on a desktop, enter something like this: + + java -jar build/libs/jsyn-17.0.0-SNAPSHOT.jar + +but with the correct version. + +JSyn - Copyright 1997 Mobileer Inc |