Skip to content

Commit

Permalink
* Link jnivideoInputLib.dll statically to avoid missing dependenci…
Browse files Browse the repository at this point in the history
…es (issue bytedeco/javacv#864)
  • Loading branch information
saudet committed Dec 28, 2017
1 parent 34a8350 commit 004dd0b
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@

* Link `jnivideoInputLib.dll` statically to avoid missing dependencies ([issue bytedeco/javacv#864](https://github.com/bytedeco/javacv/issues/864))
* Add "org.bytedeco.javacpp.openblas.nomkl" system property to let users disable MKL easily
* Add initial set of CUDA bindings for OpenCV ([pull #416](https://github.com/bytedeco/javacpp-presets/pull/416))
* Add CUDA/OpenCL-enabled builds for OpenCV, Caffe, and TensorFlow via `-gpu` extension ([issue bytedeco/javacv#481](https://github.com/bytedeco/javacv/issues/481))
Expand Down
23 changes: 23 additions & 0 deletions videoinput/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -66,4 +66,27 @@
</plugins>
</build>

<profiles>
<profile>
<id>msvc</id>
<activation>
<os><family>windows</family></os>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.bytedeco</groupId>
<artifactId>javacpp</artifactId>
<configuration>
<properties>${javacpp.platform}</properties>
<compilerOptions>
<compilerOption>/MT</compilerOption>
</compilerOptions>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>

</project>

0 comments on commit 004dd0b

Please sign in to comment.