I am building a cross platform tool using Qt, VTK, and ITK. On my Mac, I just install Qt, VTK and ITK and Cmake, set the environment paths and then compile using my Cmake file and everything works fine. I&#39;m using find_package() in Cmake to find ITK, VTK, and Qt. Again, it works fine on my mac. Now, under windows XP with Msys (w/ MinGW) make files using the native compiler, I can build ITK, VTK and install Qt and Cmake. But when I generate the build files using Cmake for my project they will not be able to satisfy any ITK dependencies (missing c++ header includes). Its fine for resolving VTK and Qt dependencies but not ITK.<br>

<br>Summary:<br>VTK compiles.<br>ITK compiles.<br>ITK and VTK install fine.<br>Cmake has no problems generating build files.<br>I can build my project on OSX.<br>However, when I compile using Msys make with MinGW, no header file from ITK can be located and the compilation then fails.<br>

<br>thanks,<br>Caleb