早上好!
我知道这里已有这个问题:Qt Moc'ing multiple files in parallel under msbuild但我不会出现这个老问题。
我在Visual Studio 2010下工作,我必须加快我的应用程序的编译时间。我使用所有标志,如/MP
和MSBuild -j
与Make等...优化的最后一步是并行化MOC步骤。它们非常缓慢,我搜索了很多,我没有找到解决方案。
我知道jom
存在,但它使用了nmake,我必须使用MSBuild。
如果有人已经听过解决方案,那应该很酷!
度过美好的一天!
答案 0 :(得分:2)
如果使用来自qt * .pro的qmake生成VC项目文件,则会以在一个线程中编译mocable的方式生成它。我知道解决此问题的唯一方法是显式调用jom进行moc预处理。
我只有VS2012(win32-msvc2012),但我曾经为VS2010做过类似的事情(在你的情况下是win32-msvc2010)
为此,您应自动执行以下步骤:
通过qmake从专业文件创建VC项目:
qmake -spec win32-msvc2012 -tp vc -o ${path-to-target}/${your-project}.vcxproj ${path-to-source}/${your-qt-pro}.pro
通过qmake从pro文件创建makefile:
qmake -spec win32-msvc2012 CONFIG+=release -o ${path-to-target}/Makefile', ${path-to-source}/${your-qt-pro}.pro
在vcproj文件旁边创建以下.bat文件(为vc2010设置%VS100COMNTOOLS%,为arch设置x86 / x64):
call "%VS110COMNTOOLS%\..\..\VC\vcvarsall.bat" ${arch}
md build\release\generated
${environment.dir}\bin\jom.exe -j 16 /F Makefile.release mocables
调试构建更改'release'为'debug'(或引入变量)
现在有必要编辑VC项目文件。以下是您需要查找/替换的内容(使用正则表达式):
1)对于所有包含(标签Project-> ItemGroup->包含* .h文件的CustomBuild Include:
</CustomBuild>
<ExcludedFromBuild>true</ExcludedFromBuild>
</CustomBuild>
2)对于Project-&gt; ItemDefinitionGroup:
</Link>
</Link>
<PreBuildEvent>
<Command>build_moc.bat</Command>
</PreBuildEvent>
3)对于Project-&gt; ItemDefinitionGroup:
- 找到:<ItemDefinitionGroup>
- 替换为:<Target Name="BeforeClean">
<Message Text="Cleaning moc generated files"/>
<Exec Command="del \$\(ProjectDir\)..\\\$(Platform\)\\build\\${arch}\\generated\\moc_*.* /F /Q" />
</Target>
<ItemDefinitionGroup>
我使用Maven自动化它,所以这里是参考的代码片段:
build_moc.bat:
cd %1
md build\%2\generated
c:\\develop\\buildenv\bin\jom.exe -j 16 /F Makefile.%2 mocables
执行替换的maven脚本(maven-replacer-plugin config):
<!-- Disabling moc preprocessor steps, since we do it with jom -->
<replacement>
<xpath>//Project/ItemGroup/CustomBuild[contains(@Include,'.h')]</xpath>
<token><![CDATA[</CustomBuild>]]></token>
<value><![CDATA[
<ExcludedFromBuild>true</ExcludedFromBuild>
</CustomBuild>
]]></value>
</replacement>
<!-- Adding moc preprocessor steps with jom -->
<replacement>
<xpath>//Project/ItemDefinitionGroup[not(@*)]</xpath>
<token><![CDATA[</Link>]]></token>
<value><![CDATA[
</Link>
<PreBuildEvent>
<Command>\$\(ProjectDir\)../${arch}/build_moc.bat \$\(ProjectDir\)../${arch} \$\(Configuration\)</Command>
</PreBuildEvent>
]]></value>
</replacement>
<!-- Cleaning moc files -->
<replacement>
<token><![CDATA[<ItemDefinitionGroup>]]></token>
<value><![CDATA[
<Target Name="BeforeClean">
<Message Text="Cleaning moc generated files"/>
<Exec Command="del \$\(ProjectDir\)..\\\$\(Platform\)\\build\\${arch}\\generated\\moc_*.* /F /Q" />
</Target>
<ItemDefinitionGroup>
]]></value>
</replacement>
我希望这会有所帮助