| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
This is a Java binding to OpenSlide.
./configure make make install
(If building from the Git repository, you will first need to install autoconf, automake, libtool, and pkg-config and run autoreconf -i.)
PKG_CONFIG=pkg-config \ PKG_CONFIG_PATH=/path/to/cross/compiled/openslide/lib/pkgconfig \ ./configure --host=i686-w64-mingw32 --build=$(build-aux/config.guess) make make install
For a 64-bit JRE, substitute --host=x86_64-w64-mingw32.
Ensure that the path to the openslide-java source tree does not contain whitespace.
Install Cygwin, selecting these additional packages:
(Cygwin is only needed for the build environment; the resulting binaries do not require Cygwin.)
Also install a JDK and Apache Ant.
Then:
./configure --prefix=/path/to/install/dir \ --host=i686-w64-mingw32 --build=$(build-aux/config.guess) \ PKG_CONFIG_PATH="/path/to/openslide/lib/pkgconfig" \ JAVA_HOME="$(cygpath c:/Program\ Files/Java/jdk*)" \ ANT_HOME="/path/to/ant/directory" make make install
For a 64-bit JRE, substitute --host=x86_64-w64-mingw32.
| Back | FazBrowse Home | New Git URL |