Skip to content

Commit

Permalink
Merge pull request #5 from Zoybean/build-process
Browse files Browse the repository at this point in the history
Clarify build process
  • Loading branch information
w0rthy committed Jan 16, 2019
2 parents a7e9171 + f34bb12 commit 904fc84
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
@@ -0,0 +1,3 @@
*.jar
*.class

15 changes: 15 additions & 0 deletions README.md
Expand Up @@ -17,3 +17,18 @@ Sorting Visualizer/Audiolizer
[Variable Width TriMesh](https://www.youtube.com/watch?v=0tr6AtLu4pg)

[Color Circle](https://www.youtube.com/watch?v=sVYtGyPiGik)

# How to use

### Build
```
mkdir -p dist target
javac src/array/visualizer/ArrayVisualizer.java -sourcepath src -d target/
jar -cvfm dist/ArrayVisualizer.jar manifest.mf -C target/ ./
```

### Run
```
java -jar dist/ArrayVisualizer.jar
```
=======
Binary file removed dist/ArrayVisualizer.jar
Binary file not shown.
3 changes: 3 additions & 0 deletions manifest.mf
@@ -0,0 +1,3 @@
Manifest-Version: 1.0
Created-By: 1.8.0_181 (Oracle Corporation)
Main-Class: array.visualizer.ArrayVisualizer

0 comments on commit 904fc84

Please sign in to comment.