You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
where the `moduleName` and `moduleVersion` variables correspond to the desired module. This downloads binaries for all platforms, but to get binaries for only one platform we can set the `javacpp.platform` system property (via the `-D` command line option) to something like `android-arm`, `linux-x86_64`, `macosx-x86_64`, `windows-x86_64`, etc. We can also specify more than one platform, see the examples at [Reducing the Number of Dependencies](https://github.com/bytedeco/javacpp-presets/wiki/Reducing-the-Number-of-Dependencies). Another option available to Gradle users is [Gradle JavaCPP](https://github.com/bytedeco/gradle-javacpp), and similarly for Scala users there is [SBT-JavaCPP](https://github.com/bytedeco/sbt-javacpp).
@@ -122,10 +122,11 @@ Required Software
122
122
-----------------
123
123
To use the JavaCPP Presets, you will need to download and install the following software:
124
124
125
-
* An implementation of Java SE 7 or newer:
125
+
* An implementation of Java SE 8 or newer:
126
126
* OpenJDK http://openjdk.java.net/install/ or
127
127
* Oracle JDK http://www.oracle.com/technetwork/java/javase/downloads/ or
128
-
* IBM JDK http://www.ibm.com/developerworks/java/jdk/
128
+
* IBM JDK http://www.ibm.com/developerworks/java/jdk/ or
129
+
* Microsoft JDK https://www.microsoft.com/openjdk etc
129
130
130
131
Further, in the case of Android, the JavaCPP Presets also rely on:
131
132
@@ -136,17 +137,17 @@ Manual Installation
136
137
-------------------
137
138
Simply put all the desired JAR files (`opencv*.jar`, `ffmpeg*.jar`, etc.), in addition to `javacpp.jar`, somewhere in your class path. The JAR files available as pre-built artifacts are meant to be used with [JavaCPP](https://github.com/bytedeco/javacpp). The binaries for Linux are built with Ubuntu, so they should work on most distributions currently in use. Here are some more specific instructions for common cases:
138
139
139
-
NetBeans (Java SE 7 or newer):
140
+
NetBeans (Java SE 8 or newer):
140
141
141
142
1. In the Projects window, right-click the Libraries node of your project, and select "Add JAR/Folder...".
142
143
2. Locate the JAR files, select them, and click OK.
143
144
144
-
Eclipse (Java SE 7 or newer):
145
+
Eclipse (Java SE 8 or newer):
145
146
146
147
1. Navigate to Project > Properties > Java Build Path > Libraries and click "Add External JARs...".
147
148
2. Locate the JAR files, select them, and click OK.
148
149
149
-
Visual Studio Code (Java SE 7 or newer):
150
+
Visual Studio Code (Java SE 8 or newer):
150
151
151
152
1. Navigate to Java Projects > Referenced Libraries, and click `+`.
152
153
2. Locate the JAR files, select them, and click OK.
@@ -175,7 +176,7 @@ Additionally, one can find on the wiki page additional information about the rec
175
176
The JavaCPP Presets depend on Maven, a powerful build system for Java, so before attempting a build, be sure to install and read up on:
Each child module in turn relies by default on the included [`cppbuild.sh` scripts](#the-cppbuildsh-scripts), explained below, to install its corresponding native libraries in the `cppbuild` subdirectory. To use native libraries already installed somewhere else on the system, other installation directories than `cppbuild` can also be specified either in the `pom.xml` files or in the `.java` configuration files. The following versions are supported:
0 commit comments