<html><head></head><body><div style="font-family: Verdana;font-size: 12.0px;"><div>
<div>Hi all,</div>

<div> </div>

<div>I'm new to itk and to be honest also to using external libraries, so excuse me if my question is dumb . I have problems with using ITK 3.20 in a project on Windows using VS2010. I built ITK using cmake (no examples, no tests, with shared libs). With this configuration I was able to compile successfully and to install.</div>

<div>For my project I also have a cmakeLists.txt (below) and was able to include all headers. Anyways, I get an error:</div>

<div> </div>

<div>Error 1 error C1083: Cannot open include file: 'itkMattesMutualInformationImageToImageMetric.cxx': No such file or directory D:\extern\ITK\include\InsightToolkit\itkMattesMutualInformationImageToImageMetric.h 516<br/>
 </div>

<div>This file is in the original sources but not copied during installation. Should this be the case? What flag in cmake would enforce this?</div>

<div>This include is surrounded by an #infdef ITK_MANUAL_INSTANTIATION, which is obviously not defined. Could the error be here?</div>

<div>In the project the path where all itk libraries are installed is set correctly to "Additional Library Directories" :</div>

<div> </div>

<div>D:/extern/ITK/lib/InsightToolkit</div>

<div>D:/extern/ITK/lib/InsightToolkit/$(Configuration)</div>

<div> </div>

<div>I'm probably missing a step that solves it all but I don't have an idea right now.</div>

<div> </div>

<div>Thanks for any help!</div>

<div> </div>

<div>Best,</div>

<div>Wolfgang</div>

<div> </div>

<div>#CMakeLists.txt</div>

<div>
<div>PROJECT (RigidRegistration)<br/>
SET(CMAKE_PREFIX_PATH ${CMAKE_PREFIX_PATH} "D:/extern/ITK/lib/InsightToolkit")<br/>
find_package(ITK)<br/>
IF(ITK_USE_FILE)<br/>
 INCLUDE(${ITK_USE_FILE})<br/>
 MESSAGE( STATUS "ITK_USE_FILE:  " ${ITK_USE_FILE})<br/>
ENDIF(ITK_USE_FILE)</div>

<div> </div>

<div>SET(RigidRegistration<br/>
  rigid_registration_of_multimodal_MR_knee_data.cxx<br/>
)</div>

<div>ADD_EXECUTABLE(RigidRegistration ${RigidRegistration})<br/>
<br/>
TARGET_LINK_LIBRARIES(RigidRegistration<br/>
 ${ITK_LIBRARIES}<br/>
)</div>

<div> </div>
</div>
</div></div></body></html>