aboutsummaryrefslogtreecommitdiffstats
path: root/src/qtmsbuild/qtqml.targets
blob: 94d36cf7450dc97b732014e140c03e049aac4ec4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
<?xml version="1.0" encoding="utf-8"?>
<!--
/****************************************************************************
**
** Copyright (C) 2018 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of the Qt VS Tools.
**
** $QT_BEGIN_LICENSE:GPL-EXCEPT$
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and The Qt Company. For licensing terms
** and conditions see https://www.qt.io/terms-conditions. For further
** information use the contact form at https://www.qt.io/contact-us.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU
** General Public License version 3 as published by the Free Software
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
** included in the packaging of this file. Please review the following
** information to ensure the GNU General Public License requirements will
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
**
** $QT_END_LICENSE$
**
****************************************************************************/
-->

<!--
///////////////////////////////////////////////////////////////////////////////////////////////////
// Targets required to build the QML cache (aka. qtquickcompiler)
// -->
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

  <!--
  /////////////////////////////////////////////////////////////////////////////////////////////////
  // Qt/MSBuild global properties
  // -->
  <PropertyGroup>
    <QtBuildTargets>$(QtBuildTargets);QtQmlCache</QtBuildTargets>
    <QtRccDependsOn>$(QtRccDependsOn);QtQmlCache</QtRccDependsOn>
  </PropertyGroup>

  <!--
  /////////////////////////////////////////////////////////////////////////////////////////////////
  // TARGET QtQmlCachePrepare
  /////////////////////////////////////////////////////////////////////////////////////////////////
  // Pre-process rcc source files marked for QML cache generation
  // -->
  <Target Name="QtQmlCachePrepare"
    DependsOnTargets="_SelectedFiles;QtRccSetDependencies"
    BeforeTargets="QtRccPrepare" Condition="'@(QtRcc)' != ''"
    Inputs="%(QtRcc.Identity)" Outputs="@(QtRcc->'####### Don't skip this target #######')">

    <Message Importance="High" Condition="'$(QtDebug)' == 'true'"
      Text="## QtQmlCachePrepare %(QtRcc.Identity)" />

    <!--// Remove sources excluded from build -->
    <ItemGroup>
      <QtRcc Remove="@(QtRcc)"
        Condition="'$(SelectedFiles)' == '' AND '%(QtRcc.ExcludedFromBuild)' == 'true'"/>
    </ItemGroup>

    <!--
    ///////////////////////////////////////////////////////////////////////////////////////////////
    // $(is_selected) ::= file is selected to build
    // -->
    <PropertyGroup>
      <selected_files>[@(SelectedFiles->'%(Identity)','][')]</selected_files>
      <file>[@(QtRcc->'%(Identity)')]</file>
      <output_file>@(QtRcc->'%(OutputFile)')</output_file>
      <is_selected
        Condition="'@(SelectedFiles)' == '' OR $(selected_files.Contains('$(file)'))"
        >true</is_selected>
      <is_selected
        Condition="'@(SelectedFiles)' != '' AND !$(selected_files.Contains('$(file)'))"
        >false</is_selected>
    </PropertyGroup>

    <!--
    ///////////////////////////////////////////////////////////////////////////////////////////////
    // Parse QRC file
    // @(res_file)    ::= names of resource files
    // @(res_qml_js)  ::= names of QML and JS resource files
    // @(res_other)   ::= names of other resource files
    // -->
    <ItemGroup>
      <res_file
        Condition="'@(QtRcc)' != '' AND '%(QtRcc.QmlCacheGenerate)' == 'true'"
        Include="%(QtRcc.ResourceFiles)"/>
    </ItemGroup>
    <ItemGroup Condition="'@(res_file)' != ''">
      <res_qml_js Include="%(res_file.Identity)"
        Condition="'%(res_file.Extension)' == '.qml' OR '%(res_file.Extension)' == '.js'"/>
      <res_other Include="%(res_file.Identity)"
        Condition="'%(res_file.Extension)' != '.qml' AND '%(res_file.Extension)' != '.js'"/>
    </ItemGroup>

    <!--
    ///////////////////////////////////////////////////////////////////////////////////////////////
    // Expand QML and JS build items
    // -->
    <ItemGroup Condition="'@(res_qml_js)' != ''">
      <template Include="template">
        <InputFile><![CDATA[%<FullPath>]]></InputFile>
        <OutputFile>@(QtRcc->'%(QmlCacheOutputFile)')</OutputFile>
        <Message>@(QtRcc->'%(QmlCacheGenMessage)')</Message>
        <Outputs>%(OutputFile)</Outputs>
        <ResourceFile>@(QtRcc->'%(FullPath)')</ResourceFile>
        <IsSelected>$(is_selected)</IsSelected>
        <AdditionalDependencies/>
      </template>
    </ItemGroup>
    <!--
    // @(QtQml) ::= QML and JS resource files to be cached -->
    <Expand Condition="'@(res_qml_js)' != ''"
      Items="@(res_qml_js)" BaseItem="@(QtRcc)" Template="@(template)">
      <Output TaskParameter="Result" ItemName="QtQml"/>
    </Expand>

    <!--
    ///////////////////////////////////////////////////////////////////////////////////////////////
    // Convert rcc sources to QML cache generation filter sources
    // -->
    <ItemGroup Condition="'@(QtQml)' != ''">
      <!--
      // @(QtRccFilter) ::= QRC files to be filtered -->
      <QtRccFilter Include="@(QtRcc)">
        <QtQml>@(QtQml)</QtQml>
        <OtherResources>@(res_other->'%(Identity)')</OtherResources>
        <InputChanged>false</InputChanged>
        <OutputFile>%(QtRcc.QmlCacheFilteredFile)</OutputFile>
        <Outputs>%(QtRcc.QmlCacheFilteredFile)</Outputs>
        <IsSelected>$(is_selected)</IsSelected>
      </QtRccFilter>
      <QtRcc Remove="@(QtRcc)"/>
    </ItemGroup>
    <!--
    // Delete output file to force build of source if it was manually selected to build
    //  (e.g. by the 'Compile' option in the context menu for the file) -->
    <Delete
      Condition="'$(SelectedFiles)' != '' AND '$(is_selected)' == 'true'"
      Files="%(QtRccFilter.OutputFile)"/>
    <Delete
      Condition="'$(SelectedFiles)' != '' AND '$(is_selected)' == 'true'"
      Files="%(QtQml.OutputFile)"/>

    <!--
    ///////////////////////////////////////////////////////////////////////////////////////////////
    // Clean-up
    // -->
    <PropertyGroup>
      <selected_files/>
      <file/>
      <output_file/>
      <is_selected/>
    </PropertyGroup>
    <ItemGroup>
      <res_file Remove="@(res_file)"/>
      <res_qml_js Remove="@(res_qml_js)"/>
      <res_other Remove="@(res_other)"/>
      <template Remove="@(res_other)"/>
    </ItemGroup>
  </Target>

  <!--
  /////////////////////////////////////////////////////////////////////////////////////////////////
  // TARGET QtRccFilterSetModified
  /////////////////////////////////////////////////////////////////////////////////////////////////
  // Set InputModified flag for modified files (i.e. Inputs newer than Outputs)
  // -->
  <Target Name="QtRccFilterSetModified" DependsOnTargets="QtQmlCachePrepare"
    Inputs="%(QtRccFilter.FullPath);%(QtRccFilter.AdditionalDependencies)"
    Outputs="@(QtRccFilter->'%(OutputFile)')">

    <Message Importance="High" Condition="'$(QtDebug)' == 'true' AND '@(QtRccFilter)' != ''"
      Text="## QtRccFilterSetModified %(QtRccFilter.Identity) => %(QtRccFilter.OutputFile)"/>

    <PropertyGroup>
      <input_changed/>
    </PropertyGroup>
    <CreateProperty Condition="'@(QtRccFilter)' != ''" Value="true">
      <Output TaskParameter="ValueSetByTask" PropertyName="input_changed" />
    </CreateProperty>
    <ItemGroup>
      <QtRccFilter>
        <InputChanged>$(input_changed)</InputChanged>
        <IsSelected Condition="'$(input_changed)' == 'true'">true</IsSelected>
      </QtRccFilter>
    </ItemGroup>

    <!--
    ///////////////////////////////////////////////////////////////////////////////////////////////
    // Clean-up
    // -->
    <PropertyGroup>
      <input_changed/>
    </PropertyGroup>
  </Target>

  <!--
  /////////////////////////////////////////////////////////////////////////////////////////////////
  // TARGET QtRccFilter
  /////////////////////////////////////////////////////////////////////////////////////////////////
  // Filter QRC file:
  //    - Filter QML and JS resources from QRC
  //    - If other resources are present, generate new QRC with filtered contents
  //    - Collect data to use in cache loader generation
  // -->
  <Target Name="QtRccFilter" DependsOnTargets="QtRccFilterSetModified"
    Inputs="%(QtRccFilter.FullPath);%(QtRccFilter.AdditionalDependencies);$(MSBuildProjectFile)"
    Outputs="@(QtRccFilter->'%(OutputFile)')">

    <Message Importance="High" Condition="'$(QtDebug)' == 'true'"
      Text="## QtRccFilter %(QtRccFilter.Identity) => @(QtRccFilter->'%(OutputFile)')" />

    <!--
    ///////////////////////////////////////////////////////////////////////////////////////////////
    // Set DependenciesChanged flag for modified files or dependencies
    // -->
    <PropertyGroup>
      <dependencies_changed/>
    </PropertyGroup>
    <CreateProperty Value="true">
      <Output TaskParameter="ValueSetByTask" PropertyName="dependencies_changed" />
    </CreateProperty>
    <ItemGroup>
      <QtRccFilter>
        <DependenciesChanged>$(dependencies_changed)</DependenciesChanged>
      </QtRccFilter>
    </ItemGroup>

    <!--
    ///////////////////////////////////////////////////////////////////////////////////////////////
    // @(input_file)    ::= QRC file to filter
    // @(filtered_file) ::= filtered QRC file
    // -->
    <ItemGroup>
      <input_file Include="%(QtRccFilter.InputFile)"
        Condition="'%(QtRccFilter.QtQml)' != '' AND '%(QtRccFilter.InputFile)' != ''"/>
      <filtered_file Include="%(QtRccFilter.QmlCacheFilteredFile)"
        Condition="'%(QtRccFilter.QmlCacheFilteredFile)' != ''"/>
    </ItemGroup>

    <!--
    ///////////////////////////////////////////////////////////////////////////////////////////////
    // Prepare qmlcachegen command for QRC filtering
    // -->
    <PropertyGroup>
      <!--
      // $(options) ::= qmlcachegen command line options -->
      <options Condition="'%(QtRccFilter.QtQml)' != '' AND '@(input_file)' != ''"
        >$(options) @(input_file->'--filter-resource-file &quot;%(Identity)&quot;')</options>
      <options Condition="'%(QtRccFilter.QtQml)' != '' AND '@(filtered_file)' != ''"
        >$(options) @(filtered_file->'-o &quot;%(Identity)&quot;')</options>
      <!--
      // $(full_path) ::= full path of filtered file -->
      <full_path Condition="'%(QtRccFilter.QtQml)' != ''"
>$([System.IO.Path]::Combine($(MSBuildProjectDirectory),%(QmlCacheFilteredFile)))</full_path>
      <!--
      // $(relative_path) ::= path of filtered file, relative to project directory -->
      <relative_path Condition="'%(QtRccFilter.QtQml)' != ''"
>$([MSBuild]::MakeRelative($(MSBuildProjectDirectory),$(full_path)))</relative_path>
      <!--
      // $(run_parallel) ::= run qmlcachegen in a parallel process
      // $(run_single)   ::= run qmlcachegen in single process mode -->
      <run_parallel Condition="'@(QtRccFilter)' != ''
        AND '%(QtRccFilter.ParallelProcess)' == 'true' AND '$(SelectedFiles)' == ''"
      >true</run_parallel>
      <run_single Condition="'@(QtRccFilter)' != ''
        AND ('%(QtRccFilter.ParallelProcess)' != 'true' OR '$(SelectedFiles)' != '')"
      >true</run_single>
    </PropertyGroup>

    <ItemGroup Condition="'@(QtRccFilter)' != ''">
      <!--
      /////////////////////////////////////////////////////////////////////////////////////////////
      // Create work item for QRC filtering
      // -->
      <QtWork
        Include="@(QtRccFilter)"
        Condition="'%(QtRccFilter.QtQml)' != ''
          AND '%(QtRccFilter.OtherResources)' != ''
          AND '%(QtRccFilter.IsSelected)' == 'true'">
        <WorkType>qmlcachegen_filter</WorkType>
        <ToolPath>%(QtRccFilter.QTDIR)\bin\qmlcachegen.exe</ToolPath>
        <Options>$(options)</Options>
        <OutputFile>$(full_path)</OutputFile>
        <Message>%(QtRccFilter.QmlCacheFilterMessage)</Message>
        <ParallelBuild Condition="'$(run_parallel)' == 'true'">true</ParallelBuild>
        <ParallelBuild Condition="'$(run_single)'   == 'true'">false</ParallelBuild>
      </QtWork>

      <!--
      /////////////////////////////////////////////////////////////////////////////////////////////
      // Create build item for generated QRC file
      // -->
      <QtRcc Condition="'%(QtRccFilter.QtQml)' != ''
          AND '%(QtRccFilter.OtherResources)' != ''"
        Include="@(QtRccFilter->'$(relative_path)')">
        <InputFile>@(QtRccFilter->'%(QmlCacheFilteredFile)')</InputFile>
        <OutputFile>@(QtRccFilter->'%(QmlCacheFilteredOutputFile)')</OutputFile>
        <InitFuncName>@(QtRccFilter->'%(QmlCacheFilteredInitFuncName)')</InitFuncName>
        <DependsOn>@(QtRccFilter)</DependsOn>
      </QtRcc>
    </ItemGroup>

    <!--
    /////////////////////////////////////////////////////////////////////////////////////////////
    // If sources were manually selected (e.g. by the 'Compile' option in the context menu for
    // project items), add generated QRC to the list of selected files
    // -->
    <PropertyGroup>
      <selected_rcc
        Condition="'$(SelectedFiles)' != ''
          AND '%(QtRccFilter.IsSelected)' == 'true'
          AND '%(QtRccFilter.QtQml)' != ''
          AND '%(QtRccFilter.OtherResources)' != ''"
        >$(relative_path)</selected_rcc>
    </PropertyGroup>
    <PropertyGroup Condition="'$(selected_rcc)' != ''">
      <SelectedFiles>$(SelectedFiles);$(selected_rcc)</SelectedFiles>
    </PropertyGroup>
    <ItemGroup Condition="'$(selected_rcc)' != ''">
      <SelectedFiles Include="$(selected_rcc)"/>
    </ItemGroup>

    <!--
    ///////////////////////////////////////////////////////////////////////////////////////////////
    // Update timestamp of generated QRC file to force rcc target to run
    // -->
    <MakeDir Directories="$([System.IO.Path]::GetDirectoryName(%(QtRccFilter.OutputFile)))"/>
    <Touch Condition="'%(QtRccFilter.InputChanged)' == 'true'"
      AlwaysCreate="true" Files="%(QtRccFilter.OutputFile)"/>

    <!--
    ///////////////////////////////////////////////////////////////////////////////////////////////
    // Create loader input item, used in cache loader generation
    // -->
    <ItemGroup Condition="'@(QtRccFilter)' != ''">
      <loader_input Include="@(QtRccFilter->'QtQmlCacheLoader')">
        <Inputs>%(QtRccFilter.Identity)</Inputs>
        <InputFile>%(QtRccFilter.InputFile)</InputFile>
        <Mapping Condition="'%(QtRccFilter.QtQml)' != '' AND '%(QtRccFilter.OtherResources)' != ''"
          >%(QtRccFilter.InputFile)=$(full_path)</Mapping>
      </loader_input>
    </ItemGroup>

    <!--
    ///////////////////////////////////////////////////////////////////////////////////////////////
    // Clean-up
    // -->
    <ItemGroup>
      <input_file Remove="@(input_file)"/>
      <filtered_file Remove="@(filtered_file)"/>
    </ItemGroup>
    <PropertyGroup>
      <dependencies_changed/>
      <options/>
      <full_path/>
      <relative_path/>
      <run_parallel/>
      <run_single/>
      <selected_rcc/>
    </PropertyGroup>
  </Target>

  <!--
  /////////////////////////////////////////////////////////////////////////////////////////////////
  // TARGET QtQmlCacheLoader
  /////////////////////////////////////////////////////////////////////////////////////////////////
  // Generate QML cache loader
  // -->
  <Target Name="QtQmlCacheLoader" DependsOnTargets="QtRccFilter">

    <Message Importance="High" Condition="'$(QtDebug)' == 'true'"
      Text="## QtQmlCacheLoader @(QtQmlCacheLoader->'%(Inputs)')" />

    <!--
    ///////////////////////////////////////////////////////////////////////////////////////////////
    // Get QML cache loader properties from project rcc property page
    // -->
    <ItemGroup>
      <QtRcc Include="qmlcachengen_loader"/>
      <loader Include="@(QtRcc)" Condition="'%(QtRcc.Identity)' == 'qmlcachengen_loader'"/>
    </ItemGroup>

    <!--
    ///////////////////////////////////////////////////////////////////////////////////////////////
    // Generate QML cache loader
    // -->
    <PropertyGroup>
      <!--
      // $(options) ::= qmlcachegen command line options -->
      <options Condition="'@(loader_input)' != ''"
        >$(options) @(loader_input->'--resource-file-mapping=&quot;%(Mapping)&quot;',' ')</options>
      <options Condition="'@(loader_input)' != ''"
        >$(options) @(loader_input->'&quot;%(InputFile)&quot;',' ')</options>
      <options Condition="'@(loader)' != ''"
        >$(options) @(loader->'-o &quot;%(QmlCacheLoaderFile)&quot;')</options>
      <!--
      // $(run_parallel) ::= run qmlcachegen in a parallel process
      // $(run_single)   ::= run qmlcachegen in single process mode -->
      <run_parallel Condition="'@(QtQmlCacheLoader)' != ''
        AND '%(loader.ParallelProcess)' == 'true' AND '$(SelectedFiles)' == ''">true</run_parallel>
      <run_single Condition="'@(QtQmlCacheLoader)' != ''
        AND ('%(loader.ParallelProcess)' != 'true' OR  '$(SelectedFiles)' != '')">true</run_single>
      <!--
      // $(dependencies_changed)  ::= source QRC files changed status
      // $(input_changed)         ::= source QRC files input changed status -->
      <dependencies_changed>@(loader_input->'%(DependenciesChanged)')</dependencies_changed>
      <input_changed>@(loader_input->'%(InputChanged)')</input_changed>
      <is_selected>@(loader_input->'%(IsSelected)')</is_selected>
    </PropertyGroup>
    <ItemGroup>
      <!--
      //  Create work item to generate QML cache loader -->
      <QtWork
        Include="qmlcachengen_loader"
        Condition="'@(loader_input)' != ''
          AND $(is_selected.Contains('true'))">
        <WorkType>qmlcachengen_loader</WorkType>
        <ToolPath>@(loader->'%(QTDIR)')\bin\qmlcachegen.exe</ToolPath>
        <Options>$(options)</Options>
        <OutputFile>@(loader->'%(QmlCacheLoaderFile)')</OutputFile>
        <Message>@(loader->'%(QmlCacheLoaderMessage)')</Message>
        <ParallelBuild Condition="'$(run_parallel)' == 'true'">true</ParallelBuild>
        <ParallelBuild Condition="'$(run_single)'   == 'true'">false</ParallelBuild>
        <DisableLog>true</DisableLog>
        <DependenciesChanged>$(dependencies_changed.Contains('true'))</DependenciesChanged>
        <InputChanged>$(input_changed.Contains('true'))</InputChanged>
        <ClCompile Condition="'%(loader.DynamicSource)' != 'false'"
          >@(loader->'%(QmlCacheLoaderFile)')</ClCompile>
        <DependsOn>@(loader_input->'%(Inputs)')</DependsOn>
      </QtWork>
    </ItemGroup>

    <!--
    ///////////////////////////////////////////////////////////////////////////////////////////////
    // Clean-up
    // -->
    <ItemGroup>
      <loader_mapping_option  Remove="@(mapping_option)"/>
      <loader_input_option    Remove="@(loader_input_option)"/>
      <loader                 Remove="@(loader)"/>
      <QtRcc                  Remove="qmlcachengen_loader"/>
    </ItemGroup>
    <PropertyGroup>
      <options/>
      <run_parallel/>
      <run_single/>
      <dependencies_changed/>
      <input_changed/>
    </PropertyGroup>
  </Target>

  <!--
  /////////////////////////////////////////////////////////////////////////////////////////////////
  /// TARGET QtQmlSetModified
  /////////////////////////////////////////////////////////////////////////////////////////////////
  // Set InputModified flag for modified files (i.e. Inputs newer than Outputs)
  // -->
  <Target Name="QtQmlSetModified" DependsOnTargets="QtQmlCachePrepare"
    Inputs="%(QtQml.FullPath);%(QtQml.AdditionalDependencies)" Outputs="@(QtQml->'%(OutputFile)')">

    <Message Importance="High" Condition="'$(QtDebug)' == 'true'"
      Text="## QtQmlSetModified %(QtQml.Identity) => @(QtQml->'%(OutputFile)')"/>

    <PropertyGroup>
      <input_changed/>
    </PropertyGroup>
    <CreateProperty Value="true">
      <Output TaskParameter="ValueSetByTask" PropertyName="input_changed" />
    </CreateProperty>
    <ItemGroup>
      <QtQml>
        <InputChanged>$(input_changed)</InputChanged>
      </QtQml>
    </ItemGroup>

    <!--
    ///////////////////////////////////////////////////////////////////////////////////////////////
    // Clean-up
    // -->
    <PropertyGroup>
      <input_changed/>
    </PropertyGroup>
  </Target>

  <!--
  /////////////////////////////////////////////////////////////////////////////////////////////////
  // TARGET QtQml
  /////////////////////////////////////////////////////////////////////////////////////////////////
  // -->
  <Target Name="QtQml" DependsOnTargets="QtQmlSetModified"
    Inputs="%(QtQml.FullPath);%(QtQml.AdditionalDependencies);$(MSBuildProjectFile)"
    Outputs="@(QtQml->'%(OutputFile)')">

    <Message Importance="High" Condition="'$(QtDebug)' == 'true'"
      Text="## QtQml %(QtQml.Identity) => @(QtQml->'%(OutputFile)')" />

    <!--
    ///////////////////////////////////////////////////////////////////////////////////////////////
    // Set DependenciesChanged flag for modified files or dependencies
    // -->
    <PropertyGroup>
      <dependencies_changed/>
    </PropertyGroup>
    <CreateProperty Value="true">
      <Output TaskParameter="ValueSetByTask" PropertyName="dependencies_changed" />
    </CreateProperty>

    <!--
    ///////////////////////////////////////////////////////////////////////////////////////////////
    // Generate QML cache
    // -->
    <PropertyGroup>
      <!--
      // $(options) ::= qmlcachegen command line options -->
      <options Condition="'@(QtQml)' != ''"
        >$(options) --resource=&quot;%(ResourceFile)&quot;</options>
      <options Condition="'@(QtQml)' != ''"
        >$(options) &quot;%(FullPath)&quot;</options>
      <options Condition="'@(QtQml)' != ''"
        >$(options) -o &quot;%(OutputFile)&quot;</options>
      <!--
      // $(run_parallel) ::= run qmlcachegen in a parallel process
      // $(run_single)   ::= run qmlcachegen in single process mode -->
      <run_parallel Condition="'@(QtQml)' != ''
        AND '%(QtQml.ParallelProcess)' == 'true' AND '$(SelectedFiles)' == ''"
      >true</run_parallel>
      <run_single Condition="'@(QtQml)' != ''
        AND ('%(QtQml.ParallelProcess)' != 'true' OR '$(SelectedFiles)' != '')"
      >true</run_single>
    </PropertyGroup>
    <ItemGroup>
      <!--
      //  Create work item to generate QML cache -->
      <QtWork
        Include="@(QtQml)"
        Condition="'@(QtQml)' != ''
          AND '%(QtQml.IsSelected)' == 'true'">
        <WorkType>qmlcachegen</WorkType>
        <ToolPath>%(QtQml.QTDIR)\bin\qmlcachegen.exe</ToolPath>
        <Options>$(options)</Options>
        <Message>%(QtQml.Message)</Message>
        <DependenciesChanged>$(dependencies_changed)</DependenciesChanged>
        <ParallelBuild Condition="'$(run_parallel)' == 'true'">true</ParallelBuild>
        <ParallelBuild Condition="'$(run_single)'   == 'true'">false</ParallelBuild>
        <ClCompile Condition="'%(QtQml.DynamicSource)' != 'false'">%(QtQml.OutputFile)</ClCompile>
      </QtWork>
    </ItemGroup>

    <!--
    ///////////////////////////////////////////////////////////////////////////////////////////////
    // Clean-up
    // -->
    <PropertyGroup>
      <dependencies_changed/>
      <options/>
      <run_parallel/>
      <run_single/>
    </PropertyGroup>
  </Target>

  <!--
  /////////////////////////////////////////////////////////////////////////////////////////////////
  // TARGET QtQmlCache
  /////////////////////////////////////////////////////////////////////////////////////////////////
  // Root target of QML cache generation
  // -->
  <Target Name="QtQmlCache"
    DependsOnTargets="QtQmlCacheLoader;QtQml"
    BeforeTargets="QtRcc">
    <Message Importance="High" Condition="'$(QtDebug)' == 'true'" Text="## QtQmlCache" />
  </Target>
</Project>