I've installed nokia qt plugin
Qt C++ Eclipse Integration
Version: 1.6.1
but it's not working in Eclipse MARS 2 (4.5.2). I also installed qt 5.6.
So i need to somehow configure my cdt project to see qt libraries. To make
#include <QApplication>
work and also to make the project to successfully build.
How to do that?
I've tried to add C:\Qt\5.6\mingw49_32\include to project include directories but
#include <QApplication>
not working.
I cannot work with imported Makefile project for qmake generated Makefile, because for each .o file entry it contains
release/EntryPoint.o: EntryPoint.cpp bios/Bios.hpp \
...
../../../../Qt/5.6/mingw49_32/include/QtWidgets/QLabel \
../../../../Qt/5.6/mingw49_32/include/QtWidgets/qlabel.h \
... 100 of lines here
This 100 of lines won't appear without external hepl for each added cpp file in project. Importing Makefile to eclipse provides project with not working includes.
Is there a way to make qt work with any version of eclipse?