[SOLVED] Builderror C1083 nevertheless using correct INCLUDEPATH in the pro file and #include directive
-
Hello,
I have some problems with including header files from a different directory.
For example, i have tried to include the shared_ptr.hpp Headerfile from the Boost-Library:
I have added the additional include path in my *.pro file:
INCLUDEPATH += /src/Boost/boost_152_0In my *.cpp File, I have added this line:
#include <boost/shared_ptr.hpp>The parsing-step under the QT-Creator (v 2.6.1) works fine. For example, if i go with my mouse-pointer over the line #include <boost/shared_ptr.hpp> than the correct path "C:\src\Boost\boost_152_0\boost\shared_ptr.hpp" is visualized in a small popup-window. Even the jump function works fine and the include file shared_ptr.hpp will be opened correctly in the qt-creator.
But just the build (QT 5.0.0 and Visual C++ 2010 x86 Compiler) don't works. I get the error C1083 ("can not open include file").
Has anyone please an idea to solve this problem?Greets
DiebBlue