I'm trying to use MITK with Qt Creator. I've successfully compiled and used VTK and ITK with ccmake.
I've compiled MITK in superbuild mode (it downloads CTK, VTK, ITK, etc). Then I've configured it. I've compiled with make (About two hours).
I've tried make install, but MITK doesn't work that way.
With GDCM, ITK, VTK, I could find header files in /usr/local/include and shared libs in /usr/local/lib, so I included those in my .pro file in the Qt Creator project and start working.
I've been looking inside MITK-superbuild folder -after compilation-, but I can't find, for example, QmitkRenderWindow.h, and it's the first one I need.
I'm looking into MITK doc: http://docs.mitk.org/nightly-qt4/BuildInstructionsPage.html
I have an existing project with a .pro file, so I don't know how to continue.
Edited: ok, following this: http://doc.qt.digia.com/qtcreator-2.4/creator-project-cmake.html and the previous link, I created a CMakeLists.txt and changed the build directory to MITK-build folder.
Now I have autocomplete adding .h headers into code. I have to navigate into subfolders.
Is MITK-build the right folder to add? I say this because QmitkRenderWindow.h is not there, it's in MITK-src, which I've downloaded before compiling MITK.