cmake fails to compile metis 5.0.2 (on Windows)

Hello,
I have Windows XP and I tried to install metis 5.0.2. I followed what is written in BUILD-Windows.txt. I used CMake 2.8 to generate Visual Studio project files.
The problem is that cmake fails because it doesn't found execinfo.h and getline (see below). I searched in Internet and I found execinfo.h but I don't know where I should put it and if it will resolve the problem.
Any idea?

------
Check for working C compiler using: Visual Studio 8 2005
Check for working C compiler using: Visual Studio 8 2005 -- works
Detecting C compiler ABI info
Detecting C compiler ABI info - done
Check for working CXX compiler using: Visual Studio 8 2005
Check for working CXX compiler using: Visual Studio 8 2005 -- works
Detecting CXX compiler ABI info
Detecting CXX compiler ABI info - done
Looking for execinfo.h
Looking for execinfo.h - not found
Looking for getline
Looking for getline - not found
Configuring done
Generating done

RE: Try to use cygwin, put the

Try to use cygwin, put the metis code into the folder C:/cygwin/home/code, open the cygwin terminal and run:
1) "make config"
2) "make"

That worked for me!

RE: I used cygwin, I tried to run

I used cygwin, I tried to run but when I put "make config", I got this error:

rm -rf build/CYGWIN_NT-5.1-i686
mkdir -p build/CYGWIN_NT-5.1-i686
cd build/CYGWIN_NT-5.1-i686 && cmake /home/benkhala/metis-5.0.2 -DCMAKE_VERBOSE_MAKEFILE=1 -DGKLIB_PATH=/home/benkhala/metis-5.0.2/GKlib
CMake Error: The source directory "/home/benkhala/metis-5.0.2" does not exist.

when I put "pwd" I got:
/home/benkhala/metis-5.0.2
the directory does exist and I don't understand why I got this error. Have you any idea? Thanks.