Why does qmake say nothing about issues that were before adding one line into the .pro file
General and Desktop
3
Posts
3
Posters
1.2k
Views
3
Watching
-
wrote on 25 Sept 2015, 13:37 last edited by sosun
Qmake told me about some issues with
static
member and that I need to add-std+=c++11
flag. I added it usingCONFIG += c++11
and it worked fine. But then I erased this line (wanted to get these issues back) and got clean build without any issues. Was it "cached" or what? -
wrote on 25 Sept 2015, 14:09 last edited by
IIRC the makefiles are not automatically generated when the pro file is changed. You have to explicitely run qmake.
-
IIRC the makefiles are not automatically generated when the pro file is changed. You have to explicitely run qmake.
@JohanSolo said:
IIRC the makefiles are not automatically generated when the pro file is changed. You have to explicitely run qmake.
That's correct.
Or, you can simply delete the build folder.
3/3