-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update readme fix resource visibility in module-info.java add lib/libjxtp.dylib to .gitignore
- Loading branch information
1 parent
e9f475c
commit 2e4e183
Showing
4 changed files
with
10 additions
and
6 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 |
---|---|---|
|
@@ -4,5 +4,6 @@ | |
cpp/src/jxtp.* | ||
lib/jxtp.dll | ||
lib/libjxtp.so | ||
lib/libjxtp.dylib | ||
*.java | ||
!module-info.java |
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
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
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,4 +1,7 @@ | ||
module jxtp { | ||
requires org.scijava.nativelib; | ||
exports org.rationalityfrontline.jxtp; | ||
opens natives.windows_64; | ||
opens natives.linux_64; | ||
opens natives.osx_64; | ||
} |