Re: [CMake] Noob question, what is "cmake_install.cmake"?

2010-03-23 Thread James Bigler
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

[CMake] Noob question, what is "cmake_install.cmake"?

2010-03-23 Thread Darren Weber
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

Re: [CMake] Noob question

2008-08-12 Thread Alexander Neundorf
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

[CMake] Noob question

2008-08-11 Thread alpha_one_x86
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?