# This project is intended to be built outside the Insight source tree PROJECT(test) cmake_minimum_required(VERSION 2.6) # Find ITK. FIND_PACKAGE( ITK REQUIRED ) INCLUDE(${ITK_USE_FILE}) ADD_EXECUTABLE(test test.cxx) TARGET_LINK_LIBRARIES(test ${ITK_LIBRARIES})