<br><br><div class="gmail_quote">On Thu, Jan 8, 2009 at 1:57 AM, Matthew McCormick (thewtex) <span dir="ltr">&lt;<a href="mailto:matt@mmmccormick.com">matt@mmmccormick.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
The files called CMakeLists.txt contain information on how the libraries are configured and their components.&nbsp; You can simply look for the appropriate lines and variables.&nbsp; Look for, e.g., instances of the ADD_LIBRARY() command.&nbsp; If the variable depends on other variables and the valuable is non-obvious, you can use the MESSAGE() command ( see cmake help for usage ).to print out the value when doing a cmake configure.&nbsp; However, itk has few library components since most of the code is templates that don&#39;t use explicit instantiation by default. <br>

<div class="gmail_quote"><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"><br></blockquote></div><br>
</blockquote></div><br>Thanks for your answer. I&#39;ve been looking at that, but I still get some weird errors. I think I&#39;m missing something else, because I&#39;ve double checked the ordering of libraries and I&#39;m kinda sure I&#39;ve followed all the dependencies.<br>
Look at this for instance, I have a simple code that opens an image from disk.<br>When I compile it, I get the&nbsp; error below. Looking at it&nbsp; my guess is that the problem comes if the library containing ItkExceptionObject methods is missing. However, doing an nm -s it comes out that all those constructors are defined on libITKCommon.a which is given to linker after libITKIO.a where I *pressume* ImageFileReaderException is defined.<br>
Im kinda lost here. Has anyone run into a similar problem?<br>Thanks.<br><br>/home/juan/juanc/develop/gral/trunk/obj/add_noise_rgb.o: In function `MemoryAllocationError&#39;:<br>/home/juan/juanc/soft/libs/include/InsightToolkit/Common/itkExceptionObject.h:174: undefined reference to `itk::ExceptionObject::ExceptionObject(std::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const&amp;, unsigned int, std::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const&amp;, std::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const&amp;)&#39;<br>
/home/juan/juanc/develop/gral/trunk/obj/add_noise_rgb.o: In function `ImageFileReaderException&#39;:<br>/home/juan/juanc/soft/libs/include/InsightToolkit/IO/itkImageFileReader.h:44: undefined reference to `itk::ExceptionObject::ExceptionObject(char const*, unsigned int, char const*, char const*)&#39;<br>
/home/juan/juanc/soft/libs/include/InsightToolkit/IO/itkImageFileReader.h:35: undefined reference to `itk::ExceptionObject::ExceptionObject(itk::ExceptionObject const&amp;)&#39;<br>/home/juan/juanc/soft/libs/include/InsightToolkit/IO/itkImageFileReader.h:44: undefined reference to `itk::ExceptionObject::ExceptionObject(char const*, unsigned int, char const*, char const*)&#39;<br>
/home/juan/juanc/soft/libs/include/InsightToolkit/IO/itkImageFileReader.h:35: undefined reference to `itk::ExceptionObject::ExceptionObject(itk::ExceptionObject const&amp;)&#39;<br>/home/juan/juanc/soft/libs/include/InsightToolkit/IO/itkImageFileReader.h:44: undefined reference to `itk::ExceptionObject::ExceptionObject(char const*, unsigned int, char const*, char const*)&#39;<br>
/home/juan/juanc/soft/libs/include/InsightToolkit/IO/itkImageFileReader.h:44: undefined reference to `itk::ExceptionObject::ExceptionObject(char const*, unsigned int, char const*, char const*)&#39;<br>/home/juan/juanc/soft/libs/include/InsightToolkit/IO/itkImageFileReader.h:35: undefined reference to `itk::ExceptionObject::ExceptionObject(itk::ExceptionObject const&amp;)&#39;<br>
/home/juan/juanc/soft/libs/include/InsightToolkit/IO/itkImageFileReader.h:44: undefined reference to `itk::ExceptionObject::ExceptionObject(char const*, unsigned int, char const*, char const*)&#39;<br>/home/juan/juanc/soft/libs/include/InsightToolkit/IO/itkImageFileReader.h:35: undefined reference to `itk::ExceptionObject::ExceptionObject(itk::ExceptionObject const&amp;am<br>
<br><br>