Hi Chris,<br><br>thank you for your answer. I took your advice, but my project still doesn't recognize the libraries. I wonder which path exactly do I have to set. Is it the directory where I told Cmake to build the binaries of I-DO (c:/program files/ido-bin) or is it the directory where the lib files of I-DO can be found (c:/program files/ido-bin/release) or is it something else?<br>
<br>Regards, Michael <br><br><br><div class="gmail_quote">2009/10/21 Chris McIntosh <span dir="ltr"><<a href="mailto:cmcintos.sfu@gmail.com">cmcintos.sfu@gmail.com</a>></span><br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<div class="im">Hi Michael,<br>
<br>
There are a few examples projects included with the framework:<br>
<br>
examples\basic\CMakeLists.txt<br>
examples\advanced\CMakeLists.txt<br>
<br>
The key thing you'll notice is that the IDOlib is included (just like you would any other ITK library),<br>
but since it is not in the ITK directory, you need to tell CMake where it is.<br>
<br>
The following block prompts the user for the path, if the path isn't already set.<br>
<br>
IF(DEFORG_BUILD)<br>
LINK_DIRECTORIES(${DEFORG_BUILD})<br>
ELSE(DEFORG_BUILD)<br>
FIND_PATH( IDO_BUILD_PATH IDO "The I-DO build directory" )<br>
LINK_DIRECTORIES(${IDO_BUILD_PATH})<br>
ENDIF(DEFORG_BUILD)<br>
<br>
I hope this fixes your problem.<br>
<br>
Best regards,<br>
<br>
Chris<br>
<br>
</div></blockquote></div>