forked from JonasKlamroth/JJBMC
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7108a40
commit a5e624f
Showing
2 changed files
with
20 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
#ignore tmp files | ||
*~ | ||
*.swp | ||
*tmp.java | ||
/testRes/tests/tmp/ | ||
|
||
#Java | ||
*.class | ||
|
||
#Gradle | ||
build/ | ||
.gradle/ | ||
gradle/ | ||
gradlew | ||
gradlew.bat | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,5 @@ | ||
# Building | ||
To build the tool just run the main ant target (int this directory) with: ant | ||
(tested with OracleJDK 1.8) | ||
|
||
# Needed tools | ||
JBMC has to be installed and found somewhere in the path (e.g. /usr/bin/) | ||
test and recommended is version 5.10 where a binary for 64-bit linux os can | ||
bin found in ./jbmc | ||
|
||
To build and run the test create a gradle wrapper (gradle wrapper) and then call | ||
./gradlew build | ||
to run the tool use | ||
./gradlew run |