<div dir="ltr">You need to load manually the library by having something along those line in your main.<div><br></div><div><div>  // -----------------------------------------------------------------</div><div>  // Load VTK library and print which library was not properly loaded</div><div>  static {</div><div>    if (!vtkNativeLibrary.LoadAllNativeLibraries()) {</div><div>      for (vtkNativeLibrary lib : vtkNativeLibrary.values()) {</div><div>        if (!lib.IsLoaded()) {</div><div>          System.out.println(lib.GetLibraryName() + " not loaded");</div><div>        }</div><div>      }</div><div>    }</div><div>    vtkNativeLibrary.DisableOutputWindow(null);</div><div>  }</div></div><div>  // -----------------------------------------------------------------<br></div><div><br></div><div>Java related change for <span style="font-size:13px">6.2:</span></div><div><div style="font-size:13px"> - vtkPanel used to system load the native library automatically. We removed that</div><div style="font-size:13px">   as it could cause issue when used in advanced class loader system such as OSGI.</div><div style="font-size:13px"> - Automate <span class="">VTK</span> build with <span class="">Java</span> wrapping on Windows/Linux/Mac dashboards.</div></div><div><br></div><div><br></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Thu, Mar 12, 2015 at 4:31 PM, -Daniel- <span dir="ltr"><<a href="mailto:ich_daniel@habmalnefrage.de" target="_blank">ich_daniel@habmalnefrage.de</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi,<br>
I have previously worked with VTK 6.1 (+ Java) and now I switched to 6.2.<br>
But when I test my program code, I must always load all DLLs via<br>
System.loadLibrary(..). This was not the case previously.<br>
The libraries did not need be loaded separately.<br>
Is it any settings in the cmake, I have not set or set incorrectly?<br>
<br>
<br>
<br>
--<br>
View this message in context: <a href="http://vtk.1045678.n5.nabble.com/System-loadLibray-in-6-2-tp5730789.html" target="_blank">http://vtk.1045678.n5.nabble.com/System-loadLibray-in-6-2-tp5730789.html</a><br>
Sent from the VTK - Users mailing list archive at Nabble.com.<br>
_______________________________________________<br>
Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
<br>
Visit other Kitware open-source projects at <a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
<br>
Please keep messages on-topic and check the VTK FAQ at: <a href="http://www.vtk.org/Wiki/VTK_FAQ" target="_blank">http://www.vtk.org/Wiki/VTK_FAQ</a><br>
<br>
Search the list archives at: <a href="http://markmail.org/search/?q=vtkusers" target="_blank">http://markmail.org/search/?q=vtkusers</a><br>
<br>
Follow this link to subscribe/unsubscribe:<br>
<a href="http://public.kitware.com/mailman/listinfo/vtkusers" target="_blank">http://public.kitware.com/mailman/listinfo/vtkusers</a><br>
</blockquote></div><br></div>