-
Notifications
You must be signed in to change notification settings - Fork 285
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replaced scripts to compile the Java classes.
- Loading branch information
1 parent
b2bdd35
commit 2d0fbdd
Showing
7 changed files
with
2,178 additions
and
68 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 |
---|---|---|
|
@@ -9,3 +9,4 @@ node-java.cbp | |
*.iml | ||
*.kdev4 | ||
*/.kdev_include_paths | ||
.vscode |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,13 @@ | ||
#!/bin/sh | ||
|
||
if [ -z "${JAVA_HOME}" ]; then | ||
export JAVA_HOME=`/usr/libexec/java_home -v 11` | ||
fi | ||
|
||
echo "Using `javac -version`." | ||
set -x | ||
|
||
javac -source 1.7 -target 1.7 src-java/node/*.java | ||
javac -source 1.7 -target 1.7 test/*.java | ||
javac -source 1.8 -target 1.8 test8/*.java | ||
javah -classpath src-java -d ./src node.NodeDynamicProxyClass |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.