aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorPhil Burk <[email protected]>2021-08-25 17:43:00 -0700
committerGitHub <[email protected]>2021-08-25 17:43:00 -0700
commitf4925c614cc6ace95049473734513bacc77afc85 (patch)
tree36763ee3375b75ea95b9841ca6092377ab7a33de /README.md
parentf50c1ac6b5597d828ec663852d750ceedc29e631 (diff)
add gradle build info to README.md
Diffstat (limited to 'README.md')
-rw-r--r--README.md29
1 files changed, 24 insertions, 5 deletions
diff --git a/README.md b/README.md
index 9148771..e1d03d6 100644
--- a/README.md
+++ b/README.md
@@ -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