Hi, <br><br>I am trying to run the &quot;Hello World&quot; registration. I&#39;ve tried it numerous times, but I am still getting some issues while building the executable. I wonder if I write my cmake.txt correctly. Please see below. <br>
<br># This is the root ITK CMakeLists file.<br>CMAKE_MINIMUM_REQUIRED(VERSION 2.4)<br>IF(COMMAND CMAKE_POLICY)<br>  CMAKE_POLICY(SET CMP0003 NEW)<br>ENDIF(COMMAND CMAKE_POLICY)<br><br><br># This project is designed to be built outside the Insight source tree.<br>
PROJECT(ImageRegistration1)<br><br># Find ITK.<br>FIND_PACKAGE(ITK REQUIRED)<br>INCLUDE(${ITK_USE_FILE})<br><br>ADD_EXECUTABLE(ImageRegistration1 ImageRegistration1.cxx )<br><br>TARGET_LINK_LIBRARIES(ImageRegistration1 ITKCommon ITKNumerics)<br>
<br>