1.2.2. Installing on systems using Cygwin

There have been reports about problems to compile and link with CppUnit on Windows system under Cygwin. A solution might be to be to link statically. First compile CppUnit (and possibly force installation with -k):

 % ./configure --disable-shared
 % make check
 % make -k install

Then install mockpp:

 % ./configure --disable-shared
 % make check
 % make install