<div>Hi,</div>
<div>&nbsp;</div>
<div>I encountered a problem when running my program. The message says: &quot;This application has failed to start because vtkCommon.dll was not found. Re-installing the application may fix this problem.&quot; I checked this .dll file does existed in the directory: C:\ITK\InsightToolkit-Binary\bin\Debug. Also, from this mailing list I saw other ppl had a similar problem. The answer to this question was to put the directory in the %PATH% and include it the libaries. I did both and I checked with a HelloWorld test code and It ran fine. But when I tried to run a real program, this kept happening. My platform is: WinXP + 
CMake2.2 + ITK2.2.0 +&nbsp;VC6.0. The following is my CMakeLists.txt:</div>
<div>==================================================================</div>
<div><font size="2">
<p># This project is designed to be built outside the Insight source tree.</p>
<p>PROJECT(MyProject)</p>
<p># Find ITK.</p>
<p>FIND_PACKAGE(ITK)</p>
<p>IF(ITK_FOUND)</p>
<p>INCLUDE(${ITK_USE_FILE})</p>
<p>ELSE(ITK_FOUND)</p>
<p>MESSAGE(FATAL_ERROR</p>
<p>&quot;Cannot build without ITK. Please set ITK_DIR.&quot;)</p>
<p>ENDIF(ITK_FOUND)</p>
<p>LINK_LIBRARIES (</p>
<p>ITKBasicFilters</p>
<p>ITKCommon</p>
<p>ITKIO</p>
<p>ITKAlgorithms</p>
<p>ITKFEM</p>
<p>ITKStatistics</p>
<p>)</p>
<p>ADD_EXECUTABLE(MyProject MyCode.cxx )</p>
<p>TARGET_LINK_LIBRARIES(MyProject ITKCommon)</p>
<p>========================================================</p>
<p>Does anybody have an idea what I am doing wrong? </p>
<p>Thanks,</p>
<p>Ming</p></font></div>