nanguantong

Results 41 comments of nanguantong

![image](https://user-images.githubusercontent.com/12180902/89602226-d77acf80-d898-11ea-9cbf-36c6d3a48226.png)

``` Debug: Loading class org.bytedeco.javacpp.presets.javacpp Debug: Loading class org.bytedeco.javacpp.Loader Debug: Loading C:\Users\Think\.javacpp\cache\javacpp-1.5.4-SNAPSHOT-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\api-ms-win-crt-locale-l1-1-0.dll Debug: Loading C:\Users\Think\.javacpp\cache\javacpp-1.5.4-SNAPSHOT-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\api-ms-win-crt-string-l1-1-0.dll Debug: Loading C:\Users\Think\.javacpp\cache\javacpp-1.5.4-SNAPSHOT-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\api-ms-win-crt-stdio-l1-1-0.dll Debug: Loading C:\Users\Think\.javacpp\cache\javacpp-1.5.4-SNAPSHOT-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\api-ms-win-crt-math-l1-1-0.dll Debug: Loading C:\Users\Think\.javacpp\cache\javacpp-1.5.4-SNAPSHOT-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\api-ms-win-crt-heap-l1-1-0.dll Debug: Loading C:\Users\Think\.javacpp\cache\javacpp-1.5.4-SNAPSHOT-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\api-ms-win-crt-runtime-l1-1-0.dll Debug: Loading C:\Users\Think\.javacpp\cache\javacpp-1.5.4-SNAPSHOT-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\api-ms-win-crt-convert-l1-1-0.dll...

As the contrast of ffmpeg from gradle mavenCentral automatically downloaded in C:\Users\Think\.gradle\caches\modules-2\files-2.1\org.bytedeco\ffmpeg\4.3.1-1.5.4-SNAPSHOT\2440042004c1a860a43f7f91efe8fce4f7e5621f\ffmpeg-4.3.1-1.5.4-SNAPSHOT-windows-x86_64.jar, then loaded to C:\Users\Think\.javacpp\cache\ffmpeg-4.3.1-1.5.4-SNAPSHOT-windows-x86_64.jar,it's ok while running. But the zlib custom preset built from mavenLocal manually to C:\Users\Think\.m2\repository\org\bytedeco\svacdecoder\0.100-1.5.4-SNAPSHOT,not...

Yes, how to use local custom preset jar (e.g. zlib) without putting jars file to class path manually ? my build.gradle: ``` repositories { mavenLocal() mavenCentral() maven { url 'https://oss.sonatype.org/content/repositories/snapshots/'...

No, I means that how the javacpp to load the built local custom presets? And I set the class path, the same error: no jnizlib in java.library.path ![image](https://user-images.githubusercontent.com/12180902/89612613-d22a7e80-d8b2-11ea-933d-af4f76654026.png)

> Right, so that just means it's not finding libjnizlib.dll. > You'll need to put those JAR files in your class path. -----> How to do it? My jars are...

Yeah, while I wrote `compile group: 'org.bytedeco', name: 'zlib-platform', version: "1.2.11-1.5.4-SNAPSHOT" ` instead of `compile group: 'org.bytedeco', name: 'zlib', version: "1.2.11-1.5.4-SNAPSHOT"` in build.gradle it works ok. In org\bytedeco\javacpp\Loader.java: findResources: ```...

@saudet Other question please:How to packet all dependency dlls to output jar? e.g. in cppbuild\windows-x86\lib: a.lib a.dll b.dll c.dll in @Platform(value = "windows", link = { "a" }) only a.dll...

> Hi, @saudet Other question please:How to packet all dependency dlls to output jar? e.g. in cppbuild\windows-x86\lib: a.lib a.dll dir1/b.dll dir2/c.dll in https://github.com/platform(value = "windows", link = { "a" })...

@saudet How to keep the original lib directory in the output jar? e.g. a.dll dir1 ----b.dll dir2 ----c.dll ----e.cfg