Pergunta

I want to include boost in my qt application in windows, So:

In my .pro file, I add:

INCLUDEPATH += D:/library/boost_1_55_0

In main.cpp

#include <boost/thread/mutex.hpp>

When build, cause this error:

Cannot open include file: 'boost/thread/mutex.hpp'

I am sure the path is correct. And it is very strange.

Foi útil?

Solução

The issue is that you have to re-run qmake explicitly. Here you can find the corresponding long-standing issue:

Creator should know when to rerun qmake

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top