My need is simple. I have to compile and use googletest on windows using MinGW with msys. Has anyone some experience doing this?

Thanks for answers.

link|improve this question

Please describe what is going wrong. – LumpN Mar 9 '11 at 17:08
I have make some progress. It seems it can not install without a python which I do not have. I am tying to solve it now. – Rusty Horse Mar 9 '11 at 18:20
feedback

1 Answer

up vote 4 down vote accepted

It took me some time but I figured it out. Here is the guide for anyone who face the same problem.

To be able to compile GoogleTest on Windows follow this instructions:

0) I assume you have MinGW with MSYS istalled.

1) Download and install CMake from the official site http://www.cmake.org/. Use the Win32 installer version. Once you have completed the installation process copy executable files from "xxx/CMake/bin" to "xxx/MinWG/bin".

2) Download and install Python from http://www.python.org/. Again, the Windows installer does the job fine. Once you have completed the installation process copy the "python.exe" form python folder to "xxx/MinWG/bin".

3) Download the latest stable GoogleTest from http://code.google.com/p/googletest/ and unpack it into some folder.

4) Run MSYS terminal and execute following commands.

 cd xxx/gtest-x.x.x
 cmake -G "MSYS Makefiles"
 make

5) Copy the include folder "xxx/gtest-x.x.x/include" into your MinGW gcc include. Copy the library files "xxx/gtest-x.x.x/*.a" into your MinGW gcc lib.

6) When you compile tests add "-lgtest" parameter to gcc.

EDIT Commentators are right. The coping of executables worked for me but generaly it is not a good practice. Try to use a symbolic link instead.

link|improve this answer
Why copy and not symlink those executables? – mbx Mar 15 '11 at 9:16
Actually both CMake and Python aren't build statically, so both of them don't work (crash and infinite loop) when called from msys shell. – mbx Mar 15 '11 at 9:31
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.