I don't know the particulars of ITK, but the cmake_install.cmake files are
called by cmake during installation.
You might want to see if there is an a configuration option that enables or
disables installation (use ccmake or look through CMakeCache.txt in your
build directory).
James
I've got a build going for some ITK code and I want to install the binaries
into /usr/local/bin/.
This is what I try, without success.
[ ~/src/kitware/itkImageSeries2Volume-build ]$ gmake
[ 9%] Built target itkImageSeries2VTKvolume
[ 18%] Built target itkImageSeriesResize
[ 27%] Built target itk
On Tuesday 12 August 2008 08:47:14 Alexander Neundorf wrote:
> I have try this:
>
> # Options for debug level
> if(NOT DEFINED ${DEBUG_LEVEL})
You are dereferencing the variable here.
Try
if(NOT DEFINED DEBUG_LEVEL)
...
Alex
___
CMake mailing list
CM
I have try this:
# Options for debug level
if(NOT DEFINED ${DEBUG_LEVEL})
add_definitions(-DDEBUG=0)
else(NOT DEFINED ${DEBUG_LEVEL})
add_definitions(-DDEBUG=${DEBUG_LEVEL})
endif(NOT DEFINED ${DEBUG_LEVEL})
With the command line:
cmake -DDEBUG_LEVEL=50 ./
That's not work, why?