qtmoc.targets 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!--
  3. /****************************************************************************
  4. **
  5. ** Copyright (C) 2018 The Qt Company Ltd.
  6. ** Contact: https://www.qt.io/licensing/
  7. **
  8. ** This file is part of the Qt VS Tools.
  9. **
  10. ** $QT_BEGIN_LICENSE:GPL-EXCEPT$
  11. ** Commercial License Usage
  12. ** Licensees holding valid commercial Qt licenses may use this file in
  13. ** accordance with the commercial license agreement provided with the
  14. ** Software or, alternatively, in accordance with the terms contained in
  15. ** a written agreement between you and The Qt Company. For licensing terms
  16. ** and conditions see https://www.qt.io/terms-conditions. For further
  17. ** information use the contact form at https://www.qt.io/contact-us.
  18. **
  19. ** GNU General Public License Usage
  20. ** Alternatively, this file may be used under the terms of the GNU
  21. ** General Public License version 3 as published by the Free Software
  22. ** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
  23. ** included in the packaging of this file. Please review the following
  24. ** information to ensure the GNU General Public License requirements will
  25. ** be met: https://www.gnu.org/licenses/gpl-3.0.html.
  26. **
  27. ** $QT_END_LICENSE$
  28. **
  29. ****************************************************************************/
  30. -->
  31. <!--
  32. ///////////////////////////////////////////////////////////////////////////////////////////////////
  33. // Definitions specific to moc
  34. ///////////////////////////////////////////////////////////////////////////////////////////////////
  35. // -->
  36. <Project>
  37. <!--
  38. /////////////////////////////////////////////////////////////////////////////////////////////////
  39. // Import pre-requisites
  40. // -->
  41. <Import
  42. Condition="'$(QtMsBuildTargets_BeforeMoc)' != ''"
  43. Project="$(QtMsBuildTargets_BeforeMoc)"/>
  44. <!--
  45. /////////////////////////////////////////////////////////////////////////////////////////////////
  46. // Qt/MSBuild global properties
  47. // -->
  48. <PropertyGroup>
  49. <QtBuildTargets>QtMoc;$(QtBuildTargets)</QtBuildTargets>
  50. </PropertyGroup>
  51. <!--
  52. /////////////////////////////////////////////////////////////////////////////////////////////////
  53. // Setup item type and property page
  54. // -->
  55. <Choose>
  56. <When Condition="'$(QtVsProjectSettings)' == 'true' AND '$(QtVsProjectClProperties)' == 'true'">
  57. <ItemGroup>
  58. <PropertyPageSchema
  59. Include="$(MSBuildThisFileDirectory)qtmoc_v3.xml" />
  60. </ItemGroup>
  61. </When>
  62. <Otherwise>
  63. <ItemGroup Condition="'$(QtVsProjectSettings)' == 'false'">
  64. <PropertyPageSchema
  65. Include="$(MSBuildThisFileDirectory)qtmoc.xml" />
  66. </ItemGroup>
  67. </Otherwise>
  68. </Choose>
  69. <ItemGroup>
  70. <AvailableItemName Include="QtMoc">
  71. <Targets>Qt;_ClCompile</Targets>
  72. </AvailableItemName>
  73. </ItemGroup>
  74. <PropertyGroup>
  75. <QtMocRuleName>QtRule30_Moc</QtMocRuleName>
  76. </PropertyGroup>
  77. <!--
  78. /////////////////////////////////////////////////////////////////////////////////////////////////
  79. /// TARGET QtMocInit
  80. /////////////////////////////////////////////////////////////////////////////////////////////////
  81. // Initialize default metadata
  82. // -->
  83. <Target Name="QtMocInit">
  84. <!--// Initialize %(OutputFile) -->
  85. <ItemGroup Condition="'$(QtVsProjectSettings)' == 'true' AND '@(QtMoc)' != ''">
  86. <QtMocAux Include="@(QtMoc)">
  87. <OutputFile
  88. >$([System.IO.Path]::Combine('%(QtMoc.QtMocDir)','%(QtMoc.QtMocFileName)'))</OutputFile>
  89. </QtMocAux>
  90. <QtMoc Remove="@(QtMoc)"/>
  91. <QtMoc Include="@(QtMocAux)"/>
  92. <QtMocAux Remove="@(QtMocAux)"/>
  93. </ItemGroup>
  94. <!--
  95. ///////////////////////////////////////////////////////////////////////////////////////////////
  96. // Add moc output dir to C++ include path
  97. // -->
  98. <ItemGroup Condition="'@(QtMoc)' != ''">
  99. <QtIncludePath Include="$([System.IO.Path]::GetDirectoryName('%(QtMoc.OutputFile)'))"/>
  100. </ItemGroup>
  101. </Target>
  102. <!--
  103. /////////////////////////////////////////////////////////////////////////////////////////////////
  104. /// TARGET QtMocPrepare
  105. /////////////////////////////////////////////////////////////////////////////////////////////////
  106. // Prepare to process sources
  107. // -->
  108. <Target Name="QtMocPrepare" DependsOnTargets="_SelectedFiles;QtMocInit"
  109. Inputs="%(QtMoc.Identity)" Outputs="@(QtMoc->'####### Don't skip this target #######')">
  110. <Message Importance="High" Condition="'$(QtDebug)' == 'true'"
  111. Text="## QtMocPrepare @(QtMoc)"/>
  112. <PropertyGroup>
  113. <selected_files>[@(SelectedFiles->'%(Identity)','][')]</selected_files>
  114. <file>[@(QtMoc->'%(Identity)')]</file>
  115. <output_file>@(QtMoc->'%(OutputFile)')</output_file>
  116. <is_selected Condition="$(selected_files.Contains('$(file)'))">true</is_selected>
  117. <is_selected Condition="!$(selected_files.Contains('$(file)'))">false</is_selected>
  118. </PropertyGroup>
  119. <!--// Delete output file to force build of source if it was manually selected to build
  120. // (e.g. by the 'Compile' option in the context menu for the file) -->
  121. <Delete Files="$(output_file)"
  122. Condition="'$(SelectedFiles)' != '' AND '$(is_selected)' == 'true'" />
  123. <!--// If a source was manually selected to build, remove all other sources -->
  124. <ItemGroup Condition="'@(SelectedFiles)' != ''">
  125. <QtMoc Remove="@(QtMoc)"
  126. Condition="'$(SelectedFiles)' != '' AND '$(is_selected)' != 'true'" />
  127. </ItemGroup>
  128. <!--// Remove sources excluded from build -->
  129. <ItemGroup>
  130. <QtMoc Remove="@(QtMoc)"
  131. Condition="'$(SelectedFiles)' == '' AND '%(QtMoc.ExcludedFromBuild)' == 'true'"/>
  132. </ItemGroup>
  133. <PropertyGroup>
  134. <selected_files/>
  135. <file/>
  136. <output_file/>
  137. <is_selected/>
  138. </PropertyGroup>
  139. </Target>
  140. <!--
  141. /////////////////////////////////////////////////////////////////////////////////////////////////
  142. /// TARGET QtMocSetModified
  143. /////////////////////////////////////////////////////////////////////////////////////////////////
  144. // Set InputChanged flag if source file or dependencies have been modified
  145. // -->
  146. <Target Name="QtMocSetModified" DependsOnTargets="QtMocPrepare"
  147. Condition="'@(QtMoc)' != ''"
  148. Inputs="%(QtMoc.FullPath);%(QtMoc.AdditionalDependencies)" Outputs="@(QtMoc->'%(OutputFile)')">
  149. <Message Importance="High" Condition="'$(QtDebug)' == 'true'"
  150. Text="## QtMocSetModified @(QtMoc)" />
  151. <CreateProperty Value="true">
  152. <Output TaskParameter="ValueSetByTask" PropertyName="input_changed" />
  153. </CreateProperty>
  154. <ItemGroup>
  155. <QtMoc>
  156. <InputChanged>$(input_changed)</InputChanged>
  157. </QtMoc>
  158. </ItemGroup>
  159. </Target>
  160. <!--
  161. /////////////////////////////////////////////////////////////////////////////////////////////////
  162. /// TARGET QtMocOverrideCpp
  163. /////////////////////////////////////////////////////////////////////////////////////////////////
  164. //
  165. // -->
  166. <Import Project="qtmoc_cl.targets"/>
  167. <!--
  168. /////////////////////////////////////////////////////////////////////////////////////////////////
  169. /// TARGET QtMoc
  170. /////////////////////////////////////////////////////////////////////////////////////////////////
  171. // Process each source file and produce the corresponding QtWork items
  172. // -->
  173. <PropertyGroup>
  174. <QtMocDependsOn>
  175. QtPrepare;
  176. QtMocPrepare;
  177. QtMocSetModified;
  178. QtMocOverrideCpp;
  179. $(QtMocDependsOn)
  180. </QtMocDependsOn>
  181. </PropertyGroup>
  182. <Target Name="QtMoc"
  183. DependsOnTargets="$(QtMocDependsOn)"
  184. BeforeTargets="$(QtMocBeforeTargets)" AfterTargets="$(QtMocAfterTargets)"
  185. Condition="'@(QtMoc)' != ''"
  186. Inputs="%(QtMoc.FullPath);%(QtMoc.AdditionalDependencies);$(MSBuildProjectFile)"
  187. Outputs="@(QtMoc->'%(OutputFile)')">
  188. <Message Importance="High" Condition="'$(QtDebug)' == 'true'" Text="## QtMoc @(QtMoc)" />
  189. <CreateProperty Value="true">
  190. <Output TaskParameter="ValueSetByTask" PropertyName="dependencies_changed" />
  191. </CreateProperty>
  192. <!--
  193. ///////////////////////////////////////////////////////////////////////////////////////////////
  194. // Convert string lists in source item properties to lists of items
  195. // -->
  196. <Flatten Items="@(QtMoc)"
  197. Metadata="InputFile;
  198. OutputFile;
  199. IncludePath;
  200. MacFramework;
  201. PreprocessOnly;
  202. Define;
  203. Undefine;
  204. Metadata;
  205. CompilerFlavor;
  206. NoInclude;
  207. PathPrefix;
  208. ForceInclude;
  209. PrependInclude;
  210. Include;
  211. NoNotesWarnings;
  212. NoNotes;
  213. NoWarnings;
  214. IgnoreConflicts;
  215. OptionsFile">
  216. <Output
  217. TaskParameter="Result" ItemName="options" />
  218. </Flatten>
  219. <!--
  220. ///////////////////////////////////////////////////////////////////////////////////////////////
  221. // Translate local paths to build host paths
  222. // -->
  223. <HostTranslatePaths
  224. Items="@(options)"
  225. Names="InputFile;
  226. OutputFile;
  227. IncludePath;
  228. MacFramework;
  229. PathPrefix;
  230. ForceInclude;
  231. PrependInclude;
  232. Include;
  233. OptionsFile">
  234. <Output
  235. TaskParameter="Result" ItemName="HostPath" />
  236. </HostTranslatePaths>
  237. <ItemGroup>
  238. <options Condition="'%(Identity)' != ''">
  239. <Value>@(HostPath->'%(Value)')</Value>
  240. </options>
  241. </ItemGroup>
  242. <ItemGroup>
  243. <!--
  244. /////////////////////////////////////////////////////////////////////////////////////////////
  245. // Escape double-quotes in macro definitions
  246. // -->
  247. <options>
  248. <Value Condition="('%(Name)' == 'Define' OR '%(Name)' == 'Undefine')
  249. AND ($([System.String]::Copy('%(Value)').Contains(' '))
  250. OR $([System.String]::Copy('%(Value)').Contains('&quot;')))"
  251. > &quot;$([System.String]::Copy('%(Value)').Replace('&quot;', '\&quot;'))&quot;</Value>
  252. </options>
  253. <!--
  254. /////////////////////////////////////////////////////////////////////////////////////////////
  255. // Remove quotes from all paths
  256. // Escape trailing back-slash in paths
  257. // Add quotes to paths containing spaces
  258. // -->
  259. <options>
  260. <Value Condition="'%(Name)' == 'InputFile' OR '%(Name)' == 'OutputFile'
  261. OR '%(Name)' == 'IncludePath' OR '%(Name)' == 'MacFramework' OR '%(Name)' == 'PathPrefix'
  262. OR '%(Name)' == 'ForceInclude' OR '%(Name)' == 'PrependInclude' OR '%(Name)' == 'Include'
  263. OR '%(Name)' == 'OptionsFile'"
  264. >$([System.String]::Copy('%(Value)').Replace('&quot;', ''))</Value>
  265. </options>
  266. <options>
  267. <Value Condition="('%(Name)' == 'InputFile' OR '%(Name)' == 'OutputFile'
  268. OR '%(Name)' == 'IncludePath' OR '%(Name)' == 'MacFramework' OR '%(Name)' == 'PathPrefix'
  269. OR '%(Name)' == 'ForceInclude' OR '%(Name)' == 'PrependInclude' OR '%(Name)' == 'Include'
  270. OR '%(Name)' == 'OptionsFile')
  271. AND $([System.String]::Copy('%(Value)').Contains(' '))
  272. AND $([System.String]::Copy('%(Value)').EndsWith('\'))"
  273. >%(Value)\</Value>
  274. </options>
  275. <options>
  276. <Value Condition="('%(Name)' == 'InputFile' OR '%(Name)' == 'OutputFile'
  277. OR '%(Name)' == 'IncludePath' OR '%(Name)' == 'MacFramework' OR '%(Name)' == 'PathPrefix'
  278. OR '%(Name)' == 'ForceInclude' OR '%(Name)' == 'PrependInclude' OR '%(Name)' == 'Include'
  279. OR '%(Name)' == 'OptionsFile')
  280. AND $([System.String]::Copy('%(Value)').Contains(' '))"
  281. >&quot;%(Value)&quot;</Value>
  282. </options>
  283. <!--
  284. ///////////////////////////////////////////////////////////////////////////////////////////////
  285. // Generate tool command line arguments
  286. // -->
  287. <!--// [header-file] Header file to read from -->
  288. <options>
  289. <Value Condition="'%(Name)' == 'InputFile'">%(Value)</Value>
  290. </options>
  291. <!--// -o <file> Write output to file -->
  292. <options>
  293. <Value Condition="'%(Name)' == 'OutputFile'">-o %(Value)</Value>
  294. </options>
  295. <!--// -I <dir> Add dir to the include path for header files -->
  296. <options>
  297. <Value Condition="'%(Name)' == 'IncludePath'">-I%(Value)</Value>
  298. </options>
  299. <!--// -F <framework> Add macOS framework to the include path for headers -->
  300. <options>
  301. <Value Condition="'%(Name)' == 'MacFramework'">-F %(Value)</Value>
  302. </options>
  303. <!--// -E Preprocess only; do not generate meta object code -->
  304. <options>
  305. <Value Condition="'%(Name)' == 'PreprocessOnly' AND '%(Value)' != 'true'"></Value>
  306. </options>
  307. <options>
  308. <Value Condition="'%(Name)' == 'PreprocessOnly' AND '%(Value)' == 'true'">-E</Value>
  309. </options>
  310. <!--// -D <macro[=def]> Define macro, with optional definition -->
  311. <options>
  312. <Value Condition="'%(Name)' == 'Define'">-D%(Value)</Value>
  313. </options>
  314. <!--// -U <macro> Undefine macro-->
  315. <options>
  316. <Value Condition="'%(Name)' == 'Undefine'">-U%(Value)</Value>
  317. </options>
  318. <!--// -M <key=value> Add key/value pair to plugin meta data -->
  319. <options>
  320. <Value Condition="'%(Name)' == 'Metadata'">-M%(Value)</Value>
  321. </options>
  322. <!--// -compiler-flavor <flavor> Set the compiler flavor: either "msvc" or "unix" -->
  323. <options>
  324. <Value Condition="'%(Name)' == 'CompilerFlavor'">--compiler-flavor %(Value)</Value>
  325. </options>
  326. <!--// -i Do not generate an #include statement -->
  327. <options>
  328. <Value Condition="'%(Name)' == 'NoInclude' AND '%(Value)' != 'true'"></Value>
  329. </options>
  330. <options>
  331. <Value Condition="'%(Name)' == 'NoInclude' AND '%(Value)' == 'true'">-i</Value>
  332. </options>
  333. <!--// -p <path> Path prefix for included file -->
  334. <options>
  335. <Value Condition="'%(Name)' == 'PathPrefix'">-p%(Value)</Value>
  336. </options>
  337. <!--// -f <file> Force #include <file> (overwrite default) -->
  338. <options>
  339. <Value Condition="'%(Name)' == 'ForceInclude'">-f %(Value)</Value>
  340. </options>
  341. <!--// -b <file> Prepend #include <file> (preserve default include) -->
  342. <options>
  343. <Value Condition="'%(Name)' == 'PrependInclude'">-b %(Value)</Value>
  344. </options>
  345. <!--// -include <file> Parse <file> as an #include before the main source(s) -->
  346. <options>
  347. <Value Condition="'%(Name)' == 'Include'">--include %(Value)</Value>
  348. </options>
  349. <!--// -n <which> Do not display notes (-nn) or warnings (-nw) -->
  350. <options>
  351. <Value Condition="'%(Name)' == 'NoNotesWarnings'">-n%(Value)</Value>
  352. </options>
  353. <!--// -no-notes Do not display notes -->
  354. <options>
  355. <Value Condition="'%(Name)' == 'NoNotes' AND '%(Value)' != 'true'"></Value>
  356. </options>
  357. <options>
  358. <Value Condition="'%(Name)' == 'NoNotes' AND '%(Value)' == 'true'">--no-notes</Value>
  359. </options>
  360. <!--// -no-warnings Do not display warnings (implies -no-notes) -->
  361. <options>
  362. <Value Condition="'%(Name)' == 'NoWarnings' AND '%(Value)' != 'true'"></Value>
  363. </options>
  364. <options>
  365. <Value Condition="'%(Name)' == 'NoWarnings' AND '%(Value)' == 'true'">--no-warnings</Value>
  366. </options>
  367. <!--// -ignore-option-clashes Ignore all options that conflict with compilers -->
  368. <options>
  369. <Value Condition="'%(Name)' == 'IgnoreConflicts' AND '%(Value)' != 'true'"></Value>
  370. </options>
  371. <options>
  372. <Value Condition="'%(Name)' == 'IgnoreConflicts' AND '%(Value)' == 'true'"
  373. >--ignore-option-clashes</Value>
  374. </options>
  375. <!--// [@option-file] Read additional options from option-file-->
  376. <options>
  377. <Value Condition="'%(Name)' == 'OptionsFile'">@%(Value)</Value>
  378. </options>
  379. </ItemGroup>
  380. <PropertyGroup>
  381. <options>@(options->'%(Value)', ' ')</options>
  382. </PropertyGroup>
  383. <!--
  384. ///////////////////////////////////////////////////////////////////////////////////////////////
  385. // Aux properties
  386. // -->
  387. <PropertyGroup>
  388. <!--// Force modified flag if source was manually selected to build -->
  389. <input_changed Condition="'$(SelectedFiles)' != ''"
  390. >true</input_changed>
  391. <input_changed Condition="'$(SelectedFiles)' == ''"
  392. >%(QtMoc.InputChanged)</input_changed>
  393. <!--// Run work in parallel processes -->
  394. <run_parallel Condition="'@(QtMoc)' != ''
  395. AND '%(QtMoc.ParallelProcess)' == 'true'
  396. AND '$(SelectedFiles)' == ''"
  397. >true</run_parallel>
  398. <!--// Run work in single process -->
  399. <run_single Condition="'@(QtMoc)' != ''
  400. AND ('%(QtMoc.ParallelProcess)' != 'true'
  401. OR '$(SelectedFiles)' != '')"
  402. >true</run_single>
  403. <!--// Get relative path to output -->
  404. <output_relative
  405. >$([MSBuild]::MakeRelative($(ProjectDir), %(QtMoc.OutputFile)).TrimStart('\'))</output_relative>
  406. <!--// Get relative path to input -->
  407. <input_relative
  408. >$([MSBuild]::MakeRelative($(ProjectDir), %(QtMoc.InputFile)).TrimStart('\'))</input_relative>
  409. </PropertyGroup>
  410. <!--
  411. ///////////////////////////////////////////////////////////////////////////////////////////////
  412. // Create work item
  413. // -->
  414. <ItemGroup Condition="'$(run_parallel)' == 'true' OR '$(run_single)' == 'true'">
  415. <QtWork Include="@(QtMoc)">
  416. <WorkType>moc</WorkType>
  417. <ToolPath Condition="'$(QtVsProjectSettings)' == 'true'"
  418. >$(QtToolsPath)/moc</ToolPath>
  419. <ToolPath Condition="'$(QtVsProjectSettings)' != 'true'"
  420. >%(QtMoc.QTDIR)\bin\moc.exe</ToolPath>
  421. <Options>$(options)</Options>
  422. <Message>%(QtMoc.ExecutionDescription)</Message>
  423. <DependenciesChanged>$(dependencies_changed)</DependenciesChanged>
  424. <InputChanged>$(input_changed)</InputChanged>
  425. <ParallelBuild Condition="'$(run_parallel)' == 'true'">true</ParallelBuild>
  426. <ParallelBuild Condition="'$(run_single)' == 'true'">false</ParallelBuild>
  427. <!--
  428. ///////////////////////////////////////////////////////////////////////////////////////////
  429. // C++ dynamic source -->
  430. <ClCompile Condition="'%(QtMoc.DynamicSource)' == 'output'">$(output_relative)</ClCompile>
  431. <ClCompile Condition="'%(QtMoc.DynamicSource)' == 'input'">$(input_relative)</ClCompile>
  432. </QtWork>
  433. </ItemGroup>
  434. <!--
  435. ///////////////////////////////////////////////////////////////////////////////////////////////
  436. // Clean-up
  437. // -->
  438. <PropertyGroup>
  439. <options/>
  440. <dependencies_changed/>
  441. <input_changed/>
  442. <run_parallel/>
  443. <run_single/>
  444. <output_relative/>
  445. <input_relative/>
  446. </PropertyGroup>
  447. <ItemGroup>
  448. <options Remove="@(options)"/>
  449. </ItemGroup>
  450. </Target>
  451. <!--
  452. /////////////////////////////////////////////////////////////////////////////////////////////////
  453. // Import dependants
  454. // -->
  455. <Import
  456. Condition="'$(QtMsBuildTargets_AfterMoc)' != ''"
  457. Project="$(QtMsBuildTargets_AfterMoc)"/>
  458. </Project>