Skip to content

Commit

Permalink
Add README
Browse files Browse the repository at this point in the history
  • Loading branch information
laurentiuNiculae committed Oct 11, 2024
1 parent 6b19a29 commit fc8af5d
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
.vscode
.mvn
target
target
target/*
26 changes: 26 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Simple Animation Rendering Library


## External Dependecies:
You will need to install [Raylib](https://github.com/CreedVI/Raylib-J/releases/tag/v0.5.2) and [Processing](https://processing.org/download) jars in your local repository. After you downloaded the library jar you can use this command:

```bash
$ mvn install:install-file -Dfile=./core/library/core.jar -DgroupId=org.processing -DartifactId=core -Dversion=4.0.0 -Dpackaging=jar
```

Same for the raylib jar.

## Build

Build a jar

```bash
$ mvn package
```

Then run it

```bash
$ java -jar ./target/animation-renderer-lib-2.0.0.jar
```

0 comments on commit fc8af5d

Please sign in to comment.