If you are using CMake to build your project, just add:<br><br>TARGET_LINK_LIBRARIES(myExeOrLib vtkRendering)<br><br>after your ADD_EXECUTABLE or ADD_LIBRARY statement.<br><br>See &quot;cmake --help-command TARGET_LINK_LIBRARIES&quot; for more info.
<br><br><br><div><span class="gmail_quote">On 11/13/07, <b class="gmail_sendername">Walter Cabrera</b> &lt;<a href="mailto:walter@eresmas.net">walter@eresmas.net</a>&gt; wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<br>Dear David:<br><br>I am using CMake with the following configuration:<br><br>Source code: C:\VTK<br>build the binaries: C:\VTK\build<br><br>BUILD_EXAMPLES: OFF<br>BUILD_SHARED_LIBS:OFF<br>CMAKE_BACKWARDS_COMPATIBILITY: 
2.4<br>CMAKE_BUILD_TYPE: Debug<br>CMAKE_INSTALL_PREFIX: C:/VTK<br>VTK_DATA_ROOT: C:/VTK/VTKData<br>VTK_USE_PARALLEL: ON<br>VTK_USE_RENDERING: ON<br>VTK_WRAP_JAVA: OFF<br>VTK_WRAP_PYTHON: OFF<br>VTK_WRAP_TCL: OFF<br><br>Then I used Borland make(makefile)
<br><br>I think as you that some library is missing from the link.<br><br>In borland the path to library are placed using Project | Options |<br>Directories/Conditionals | Library path<br><br>Hear is the path C:\VTK\build\bin that contains the VTK libraries builded by
<br>CMake<br><br>But the error continues ....<br><br>Thank you for everything, very nice<br><br>Walter<br><br><br>David Cole wrote:<br>&gt;<br>&gt; Are you using CMake to generate your Borland makefile?<br>&gt; Are you using a build of VTK also built with CMake / Borland makefiles?
<br>&gt;<br>&gt; That is the normal/expected VTK use.<br>&gt;<br>&gt; If you have built VTK and want to use it *without* using CMake to drive<br>&gt; the<br>&gt; build of your project, then you have to add stuff to the Borland project
<br>&gt; to<br>&gt; enable including VTK header files and linking to VTK libraries.<br>&gt;<br>&gt; As I am not a Borland GUI user, I do not know how to tell you to add a VTK<br>&gt; library through Borland&#39;s GUI. Unresolved external errors mean that some
<br>&gt; library is missing from the link line -- if you are using a CMake based<br>&gt; project, this should just work; if you are using Borland&#39;s IDE/GUI then<br>&gt; you<br>&gt; are on your own... :-)<br>&gt;<br>&gt; Any other Borland IDE users out there that can help Walter?
<br>&gt;<br>&gt; HTH,<br>&gt; David<br>&gt;<br>&gt;<br>&gt; On 11/13/07, Walter Cabrera &lt;<a href="mailto:walter@eresmas.net">walter@eresmas.net</a>&gt; wrote:<br>&gt;&gt;<br>&gt;&gt;<br>&gt;&gt; Dear Kent and David:<br>
&gt;&gt;<br>&gt;&gt;<br>&gt;&gt; This is the source:<br>&gt;&gt;<br>&gt;&gt; #include &lt;vcl.h&gt;<br>&gt;&gt; #pragma hdrstop<br>&gt;&gt;<br>&gt;&gt; #include &quot;Unit1.h&quot;<br>&gt;&gt; #include &lt;vtkBMPReader.h&gt;
<br>&gt;&gt;<br>&gt;&gt; //---------------------------------------------------------------------------<br>&gt;&gt; #pragma package(smart_init)<br>&gt;&gt; #pragma resource &quot;*.dfm&quot;<br>&gt;&gt; TForm1 *Form1;<br>&gt;&gt;
<br>&gt;&gt; //---------------------------------------------------------------------------<br>&gt;&gt; __fastcall TForm1::TForm1(TComponent* Owner)<br>&gt;&gt;&nbsp;&nbsp; : TForm(Owner)<br>&gt;&gt; {<br>&gt;&gt;&nbsp;&nbsp; vtkBMPReader *bmpReader=vtkBMPReader::New();
<br>&gt;&gt; }<br>&gt;&gt;<br>&gt;&gt; and this is the error<br>&gt;&gt;<br>&gt;&gt; [Linker Error] Unresolved external &#39;vtkBMPReader::New()&#39; referenced from<br>&gt;&gt; C:\VTK\UNIT1.OBJ<br>&gt;&gt;<br>&gt;&gt; I think that the error is in link step.
<br>&gt;&gt;<br>&gt;&gt; Thanks<br>&gt;&gt;<br>&gt;&gt;<br>&gt;&gt;<br>&gt;&gt; Kent Eschenberg wrote:<br>&gt;&gt; &gt;<br>&gt;&gt; &gt; Nevertheless David is correct: there is no such class as VTKBMPReader.<br>&gt;&gt; Why
<br>&gt;&gt; &gt; not<br>&gt;&gt; &gt; correct this error and see what happens?<br>&gt;&gt; &gt;<br>&gt;&gt; &gt; Kent<br>&gt;&gt; &gt;<br>&gt;&gt; &gt; Walter Cabrera wrote:<br>&gt;&gt; &gt;&gt; Hi dear David:<br>&gt;&gt; &gt;&gt;
<br>&gt;&gt; &gt;&gt; This it is not the mistake because the compilation step executes<br>&gt;&gt; &gt;&gt; successfully, vtkBMPReader is written correctly in the source, the<br>&gt;&gt; error<br>&gt;&gt; &gt;&gt; is<br>&gt;&gt; &gt;&gt; in the step of link.
<br>&gt;&gt; &gt;&gt;<br>&gt;&gt; &gt;&gt; Thanks<br>&gt;&gt; &gt;&gt;<br>&gt;&gt; &gt;&gt;<br>&gt;&gt; &gt;&gt; David Cole wrote:<br>&gt;&gt; &gt;&gt;&gt; There is no VTKBMPReader with upper case VTK... If that&#39;s printed,
<br>&gt;&gt; it&#39;s<br>&gt;&gt; &gt;&gt;&gt; a<br>&gt;&gt; &gt;&gt;&gt; typo.<br>&gt;&gt; &gt;&gt;&gt;<br>&gt;&gt; &gt;&gt;&gt; Try &quot;vtkBMPReader&quot;<br>&gt;&gt; &gt;&gt;&gt;<br>&gt;&gt; &gt;&gt;&gt; HTH,<br>&gt;&gt; &gt;&gt;&gt; David
<br>&gt;&gt; &gt;&gt;&gt;<br>&gt;&gt; &gt;&gt;&gt; On 11/6/07, Walter Cabrera &lt;<a href="mailto:walter@eresmas.net">walter@eresmas.net</a>&gt; wrote:<br>&gt;&gt; &gt;&gt;&gt;&gt;<br>&gt;&gt; &gt;&gt;&gt;&gt; Hi.<br>&gt;&gt; &gt;&gt;&gt;&gt; My environment is the compiler C++ Builder 
6.0.&nbsp;&nbsp;I am trying to<br>&gt;&gt; execute<br>&gt;&gt; &gt;&gt;&gt;&gt; the<br>&gt;&gt; &gt;&gt;&gt;&gt; example of the VTK User&#39;s Guide (page 54). Using the VTKBMPReader<br>&gt;&gt; class<br>&gt;&gt; &gt;&gt;&gt;&gt; in
<br>&gt;&gt; &gt;&gt;&gt;&gt; the instruction<br>&gt;&gt; &gt;&gt;&gt;&gt;<br>&gt;&gt; &gt;&gt;&gt;&gt; VTKBMPReader* bmpreader=VTKBMPReader::New(); I get the error<br>&gt;&gt; &gt;&gt;&gt;&gt;<br>&gt;&gt; &gt;&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Linker error unresolved external &quot;VTKBMPReader::New()&quot;
<br>&gt;&gt; &gt;&gt;&gt;&gt; referenced from unit3.obj<br>&gt;&gt; &gt;&gt;&gt;&gt;<br>&gt;&gt; &gt;&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; I suppose that this error is related with the cmake<br>&gt;&gt; &gt;&gt;&gt;&gt; configuration I use. Can someone help me and give a hint?
<br>&gt;&gt; &gt;&gt;&gt;&gt;<br>&gt;&gt; &gt;&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Thanks<br>&gt;&gt; &gt;&gt;&gt;&gt;<br>&gt;&gt; &gt;&gt;&gt;&gt; --<br>&gt;&gt; &gt;&gt;&gt;&gt; View this message in context:<br>&gt;&gt; &gt;&gt;&gt;&gt;
<br>&gt;&gt; <a href="http://www.nabble.com/Linker-error-unresolved-external-in-C%2B%2B-Builder-6.0-tf4757672.html#a13605341">http://www.nabble.com/Linker-error-unresolved-external-in-C%2B%2B-Builder-6.0-tf4757672.html#a13605341
</a><br>&gt;&gt; &gt;&gt;&gt;&gt; Sent from the VTK - Users mailing list archive at <a href="http://Nabble.com">Nabble.com</a>.<br>&gt;&gt; &gt; _______________________________________________<br>&gt;&gt; &gt; This is the private VTK discussion list.
<br>&gt;&gt; &gt; Please keep messages on-topic. Check the FAQ at:<br>&gt;&gt; &gt; <a href="http://www.vtk.org/Wiki/VTK_FAQ">http://www.vtk.org/Wiki/VTK_FAQ</a><br>&gt;&gt; &gt; Follow this link to subscribe/unsubscribe:
<br>&gt;&gt; &gt; <a href="http://www.vtk.org/mailman/listinfo/vtkusers">http://www.vtk.org/mailman/listinfo/vtkusers</a><br>&gt;&gt; &gt;<br>&gt;&gt; &gt;<br>&gt;&gt;<br>&gt;&gt; --<br>&gt;&gt; View this message in context:
<br>&gt;&gt; <a href="http://www.nabble.com/Linker-error-unresolved-external-in-C%2B%2B-Builder-6.0-tf4757672.html#a13721502">http://www.nabble.com/Linker-error-unresolved-external-in-C%2B%2B-Builder-6.0-tf4757672.html#a13721502
</a><br>&gt;&gt; Sent from the VTK - Users mailing list archive at <a href="http://Nabble.com">Nabble.com</a>.<br>&gt;&gt;<br>&gt;&gt; _______________________________________________<br>&gt;&gt; This is the private VTK discussion list.
<br>&gt;&gt; Please keep messages on-topic. Check the FAQ at:<br>&gt;&gt; <a href="http://www.vtk.org/Wiki/VTK_FAQ">http://www.vtk.org/Wiki/VTK_FAQ</a><br>&gt;&gt; Follow this link to subscribe/unsubscribe:<br>&gt;&gt; <a href="http://www.vtk.org/mailman/listinfo/vtkusers">
http://www.vtk.org/mailman/listinfo/vtkusers</a><br>&gt;&gt;<br>&gt;<br>&gt; _______________________________________________<br>&gt; This is the private VTK discussion list.<br>&gt; Please keep messages on-topic. Check the FAQ at:
<br>&gt; <a href="http://www.vtk.org/Wiki/VTK_FAQ">http://www.vtk.org/Wiki/VTK_FAQ</a><br>&gt; Follow this link to subscribe/unsubscribe:<br>&gt; <a href="http://www.vtk.org/mailman/listinfo/vtkusers">http://www.vtk.org/mailman/listinfo/vtkusers
</a><br>&gt;<br>&gt;<br><br>--<br>View this message in context: <a href="http://www.nabble.com/Linker-error-unresolved-external-in-C%2B%2B-Builder-6.0-tf4757672.html#a13725951">http://www.nabble.com/Linker-error-unresolved-external-in-C%2B%2B-Builder-6.0-tf4757672.html#a13725951
</a><br>Sent from the VTK - Users mailing list archive at <a href="http://Nabble.com">Nabble.com</a>.<br><br>_______________________________________________<br>This is the private VTK discussion list.<br>Please keep messages on-topic. Check the FAQ at: 
<a href="http://www.vtk.org/Wiki/VTK_FAQ">http://www.vtk.org/Wiki/VTK_FAQ</a><br>Follow this link to subscribe/unsubscribe:<br><a href="http://www.vtk.org/mailman/listinfo/vtkusers">http://www.vtk.org/mailman/listinfo/vtkusers
</a><br></blockquote></div><br>