문제

I have a VS2010 solution with couple of Qt-based projects. Every time when i modify files from one certain project, generated files (moc_*.cpp ones) changes its properties to be excluded from build. Checked all the available properties but couldn't find anything related to the issue (didn't tried to recreate the project from scratch though).

Any chances to fix that?

도움이 되었습니까?

해결책

There is a related question.

First you have to check the MocDirectory in the Qt Project Settings. Originally, I set it to the wrong value $(Configuration) and encountered the same problem as you.

After I changed it to $(ConfigurationName), the problem disappeared.

The reason that when the wrong value is set, MocDirectory points to the same directory for different project configuration (e.g. debug and release). When the project is built, it will excluded the generated files in MocDirectory with respect to other project configurations. Since all the configurations refer to the same MocDirectory, all generated files will be excluded.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top