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
-
Qmake told me about some issues with
staticmember and that I need to add-std+=c++11flag. I added it usingCONFIG += c++11and 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? -
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.