<HTML><HEAD>
<META content="text/html; charset=UTF-8" http-equiv=Content-Type>
<META name=GENERATOR content="MSHTML 9.00.8112.16633"></HEAD>
<BODY style="MARGIN: 4px 4px 1px; FONT: 10pt Segoe UI">
<DIV dir=ltr>Hi,</DIV>
<DIV dir=ltr> </DIV>
<DIV dir=ltr>I am trying to do something really simple, I have a VTK project (I'm trying this with the cone.cxx example, about as simple as it gets) and I want to add ITK functionality.  In the past I had used a modified version of the ITKQuickView example, and it used to work:</DIV>
<DIV dir=ltr> </DIV>
<DIV dir=ltr>cmake_minimum_required(VERSION 2.8)<BR> <BR>project(Cone)<BR> <BR>find_package(ITK REQUIRED)<BR>include(${ITK_USE_FILE})<BR>if (ITKVtkGlue_LOADED)<BR>  find_package(VTK REQUIRED)<BR>  include(${VTK_USE_FILE})<BR>else()<BR>  find_package(ItkVtkGlue REQUIRED)<BR>  include(${ItkVtkGlue_USE_FILE})<BR>  set(Glue ItkVtkGlue)<BR>endif()<BR> <BR>add_executable(Cone MACOSX_BUNDLE Cone.cxx)<BR>target_link_libraries(Cone<BR>  ${Glue}  ${VTK_LIBRARIES} ${ITK_LIBRARIES})</DIV>
<DIV dir=ltr> </DIV>
<DIV dir=ltr>Now, however, I get the following compile error (VS 2012 64 bit on Win 7):</DIV>
<DIV dir=ltr> </DIV>
<DIV dir=ltr>2>C:\KW\VTKBuild\Rendering\Core\vtkRenderingCoreModule.h(37): error C2006: '#include' : expected a filename, found 'newline'<BR></DIV>
<DIV dir=ltr>The vicinity of that line in vtkRenderingCoreModule.h is</DIV>
<DIV dir=ltr> </DIV>
<DIV dir=ltr>/* AutoInit implementations.  */<BR>#if defined(vtkRenderingCore_INCLUDE)<BR># include vtkRenderingCore_INCLUDE  // Error is from this line <BR>#endif<BR>#if defined(vtkRenderingCore_AUTOINIT)<BR># include "vtkAutoInit.h"<BR>VTK_AUTOINIT(vtkRenderingCore)<BR>#endif</DIV>
<DIV dir=ltr> </DIV>
<DIV dir=ltr>I do not have any ITK functionality added to the program yet, it is just the cone.cxx example.  If I use a very simple CMakelists.txt file the program compiles and runs just fine:</DIV>
<DIV dir=ltr> </DIV>
<DIV dir=ltr>cmake_minimum_required(VERSION 2.8)<BR> <BR>project(Cone)<BR>set(VTK_DIR "C:/KW/VTKBuild")<BR>set(ITK_DIR "C:/KW/ITKBuild")<BR> <BR>find_package(VTK REQUIRED)<BR>include(${VTK_USE_FILE})<BR> <BR>add_executable(Cone MACOSX_BUNDLE Cone.cxx)<BR>target_link_libraries(Cone ${VTK_LIBRARIES} )</DIV>
<DIV dir=ltr> </DIV>
<DIV dir=ltr>But if I try to add</DIV>
<DIV dir=ltr> </DIV>
<DIV dir=ltr>find_package(ITK REQUIRED)<BR>include(${ITK_USE_FILE})</DIV>
<DIV dir=ltr> </DIV>
<DIV dir=ltr>I get the same error as above.  I am sure this is a simple issue but my understanding of CMake is limited.  I know this isn't precisely an ITK problem per se but I hoped someone could point out what I am doing wrong.</DIV>
<DIV dir=ltr> </DIV>
<DIV dir=ltr>Any help greatly appreciated!</DIV>
<DIV dir=ltr> </DIV>
<DIV dir=ltr>Kent</DIV>
<DIV dir=ltr> </DIV>
<DIV dir=ltr><BR> </DIV>
<DIV dir=ltr> </DIV>
<DIV dir=ltr> </DIV>
<DIV dir=ltr><BR> </DIV>
<DIV> </DIV>
<DIV dir=ltr> </DIV>Kent Ogden PhD<BR>Associate Professor, Radiology<BR>SUNY Upstate Medical University<BR>750 E. Adams Street<BR>Syracuse, NY  13210<BR><BR>email:  ogdenk@upstate.edu <BR>voice:  (315) 464-5083<BR>fax:       (315) 464-8789</BODY></HTML>