[Insight-users] Hello Word problem on linux
Luis Ibanez
luis.ibanez@kitware.com
Thu, 21 Nov 2002 15:40:34 -0500
Hi Ghassan,
You seem to be running "cmake" the first time.
You should not run "cmake" but "ccmake".
"cmake" is the non interactive version. It will
not give you a chance to provide all the parameters
that your require.
You have to run first:
ccmake ../ITK-source
That will bring up a very simple curses interface
where you have to provide the parameters required
by your project.
Only after you have succesfully run "ccmake" you
can run "cmake".
Here is the sequence of steps:
1) mkdir ITK-Example-source
2) mkdir ITK-Example-binary
3) cp ~/src/Insight/Application/SampleProject/* ITK-Example-source
4) cd ITK-Example-binary
5) ccmake ../ITK-Example-source
(fill out the variables in the curses interface,
configure with "c"
generate with "g")
6) make
Please let us know if you continue experiencing any problems,
Thanks
Luis
======================================================
Ghassan Hamarneh wrote:
....
>
> If I run ccmake ../ITK-source I get the same old error message.
>
> Here are the commands:
>
> [ghassan@morph ~/go]$ ls ITK-source/
> CMakeList.txt SampleProject.cxx
> [ghassan@morph ~/go]$ ls ITK-build/
> [ghassan@morph ~/go]$ cd ITK-build/
> [ghassan@morph ITK-build]$ cmake ../ITK-source/
> running cd /projects/mice/ghassan/ITK-build &&
> /lhome/ghassan/CMake/Templates/cconfigure 2>&1
> creating cache ./config.cache
> checking for gcc... /usr/bin/gcc
> checking whether the C compiler (/usr/bin/gcc ) works... yes
>...
> checking for ar... (cached) /usr/bin/ar
> updating cache ./config.cache
> creating ./config.status
> creating CXXCMakeSystemConfig.cmake
>
> [ghassan@morph ITK-build]$ make
> /lhome/ghassan/CMake/Source/cmake -S/projects/mice/ghassan/ITK-source
> -O/projects/mice/ghassan/ITK-build -H/projects/mice/ghassan/ITK-source
> -B/projects/mice/ghassan/ITK-build
> cmake.depends is up-to-date
>
> [ghassan@morph ITK-build]$ make install
> Installing ...
>
> [ghassan@morph ITK-build]$ ccmake ../ITK-source/
> Configuring, please wait...
>
> Now I see the same old error.
>
> Waht do you suggest?
>
> Thanks,
>
> /Ghassan
>