summaryrefslogtreecommitdiff
path: root/share/share.qbs
blob: de9b59400c57920402169d970ed3328ec44acac1 (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
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
import qbs.base 1.0

Product {
    type: ["installed_content"]
    name: "SharedContent"

    Group {
        qbs.installDir: "share/qtcreator/qmlicons/Qt/16x16"
        fileTags: ["install"]
        files: [
            "qtcreator/qmlicons/Qt/16x16/FocusScope.png",
            "qtcreator/qmlicons/Qt/16x16/Item.png",
            "qtcreator/qmlicons/Qt/16x16/BusyIndicator.png",
            "qtcreator/qmlicons/Qt/16x16/ParallelAnimation.png",
            "qtcreator/qmlicons/Qt/16x16/ChoiceList.png",
            "qtcreator/qmlicons/Qt/16x16/TextEdit.png",
            "qtcreator/qmlicons/Qt/16x16/PauseAnimation.png",
            "qtcreator/qmlicons/Qt/16x16/DatePickerDialog.png",
            "qtcreator/qmlicons/Qt/16x16/TimePickerDialog.png",
            "qtcreator/qmlicons/Qt/16x16/InfoBanner.png",
            "qtcreator/qmlicons/Qt/16x16/Rectangle.png",
            "qtcreator/qmlicons/Qt/16x16/item-icon16.png",
            "qtcreator/qmlicons/Qt/16x16/CountBubble.png",
            "qtcreator/qmlicons/Qt/16x16/State.png",
            "qtcreator/qmlicons/Qt/16x16/Button.png",
            "qtcreator/qmlicons/Qt/16x16/SequentialAnimation.png",
            "qtcreator/qmlicons/Qt/16x16/PageIndicator.png",
            "qtcreator/qmlicons/Qt/16x16/ButtonRow.png",
            "qtcreator/qmlicons/Qt/16x16/TextField.png",
            "qtcreator/qmlicons/Qt/16x16/MouseArea.png",
            "qtcreator/qmlicons/Qt/16x16/Tumbler.png",
            "qtcreator/qmlicons/Qt/16x16/MoreIndicator.png",
            "qtcreator/qmlicons/Qt/16x16/Flickable.png",
            "qtcreator/qmlicons/Qt/16x16/ListDelegate.png",
            "qtcreator/qmlicons/Qt/16x16/TabBar.png",
            "qtcreator/qmlicons/Qt/16x16/GridView.png",
            "qtcreator/qmlicons/Qt/16x16/ProgressBar.png",
            "qtcreator/qmlicons/Qt/16x16/TextArea.png",
            "qtcreator/qmlicons/Qt/16x16/RatingIndicator.png",
            "qtcreator/qmlicons/Qt/16x16/Slider.png",
            "qtcreator/qmlicons/Qt/16x16/CheckBox.png",
            "qtcreator/qmlicons/Qt/16x16/TumblerDialog.png",
            "qtcreator/qmlicons/Qt/16x16/ListView.png",
            "qtcreator/qmlicons/Qt/16x16/Text.png",
            "qtcreator/qmlicons/Qt/16x16/ColorAnimation.png",
            "qtcreator/qmlicons/Qt/16x16/Image.png",
            "qtcreator/qmlicons/Qt/16x16/RadioButton.png",
            "qtcreator/qmlicons/Qt/16x16/Component.png",
            "qtcreator/qmlicons/Qt/16x16/BorderImage.png",
            "qtcreator/qmlicons/Qt/16x16/TumblerColumn.png",
            "qtcreator/qmlicons/Qt/16x16/TextInput.png",
            "qtcreator/qmlicons/Qt/16x16/Flipable.png",
            "qtcreator/qmlicons/Qt/16x16/TumblerButton.png",
            "qtcreator/qmlicons/Qt/16x16/ToolBar.png",
            "qtcreator/qmlicons/Qt/16x16/ListButton.png",
            "qtcreator/qmlicons/Qt/16x16/PropertyChanges.png",
            "qtcreator/qmlicons/Qt/16x16/Switch.png",
            "qtcreator/qmlicons/Qt/16x16/Transition.png",
            "qtcreator/qmlicons/Qt/16x16/Window.png",
            "qtcreator/qmlicons/Qt/16x16/ButtonColumn.png",
            "qtcreator/qmlicons/Qt/16x16/PathView.png",
            "qtcreator/qmlicons/Qt/16x16/TabButton.png",
        ]
    }

    Group {
        qbs.installDir: "share/qtcreator/templates/qtquickapp/qml/app/meego10"
        fileTags: ["install"]
        files: [
            "qtcreator/templates/qtquickapp/qml/app/meego10/MainPage.qml",
            "qtcreator/templates/qtquickapp/qml/app/meego10/main.qml",
        ]
    }

    Group {
        qbs.installDir: "share/qtcreator/qmlicons/QtWebkit/16x16"
        fileTags: ["install"]
        files: [
            "qtcreator/qmlicons/QtWebkit/16x16/WebView.png",
        ]
    }

    Group {
        qbs.installDir: "share/qtcreator/qml/qmlpuppet/images"
        fileTags: ["install"]
        files: [
            "qtcreator/qml/qmlpuppet/images/template_image.png",
            "qtcreator/qml/qmlpuppet/images/webkit.png",
        ]
    }

    Group {
        qbs.installDir: "share/qtcreator/qml/qmljsdebugger/include"
        fileTags: ["install"]
        files: [
            "qtcreator/qml/qmljsdebugger/include/jsdebuggeragent.h",
            "qtcreator/qml/qmljsdebugger/include/qdeclarativeinspectorservice.h",
            "qtcreator/qml/qmljsdebugger/include/qmljsdebugger_global.h",
            "qtcreator/qml/qmljsdebugger/include/qdeclarativeviewobserver.h",
            "qtcreator/qml/qmljsdebugger/include/qdeclarativeviewinspector.h",
            "qtcreator/qml/qmljsdebugger/include/qmlinspectorconstants.h",
        ]
    }

    Group {
        qbs.installDir: "share/qtcreator/welcomescreen/widgets/images/icons"
        fileTags: ["install"]
        files: [
            "qtcreator/welcomescreen/widgets/images/icons/qtquick.png",
            "qtcreator/welcomescreen/widgets/images/icons/adressbook.png",
            "qtcreator/welcomescreen/widgets/images/icons/videoIcon.png",
            "qtcreator/welcomescreen/widgets/images/icons/qt_sdk.png",
            "qtcreator/welcomescreen/widgets/images/icons/ico_community.png",
            "qtcreator/welcomescreen/widgets/images/icons/components.png",
            "qtcreator/welcomescreen/widgets/images/icons/userguideIcon.png",
            "qtcreator/welcomescreen/widgets/images/icons/qt_quick_3.png",
            "qtcreator/welcomescreen/widgets/images/icons/ddays09.png",
            "qtcreator/welcomescreen/widgets/images/icons/qt_quick_2.png",
            "qtcreator/welcomescreen/widgets/images/icons/labsIcon.png",
            "qtcreator/welcomescreen/widgets/images/icons/communityIcon.png",
            "qtcreator/welcomescreen/widgets/images/icons/ddays11.png",
            "qtcreator/welcomescreen/widgets/images/icons/developing_with_qt_creator.png",
            "qtcreator/welcomescreen/widgets/images/icons/openIcon.png",
            "qtcreator/welcomescreen/widgets/images/icons/buildrun.png",
            "qtcreator/welcomescreen/widgets/images/icons/qwidget.png",
            "qtcreator/welcomescreen/widgets/images/icons/ddays10.png",
            "qtcreator/welcomescreen/widgets/images/icons/qt_quick_1.png",
            "qtcreator/welcomescreen/widgets/images/icons/createIcon.png",
            "qtcreator/welcomescreen/widgets/images/icons/feedbackIcon.png",
        ]
    }

    Group {
        qbs.installDir: "share/qtcreator/welcomescreen/widgets/images/mockup"
        fileTags: ["install"]
        files: [
            "qtcreator/welcomescreen/widgets/images/mockup/mainwindow-examples.png",
            "qtcreator/welcomescreen/widgets/images/mockup/layout-examples.png",
            "qtcreator/welcomescreen/widgets/images/mockup/designer-examples.png",
            "qtcreator/welcomescreen/widgets/images/mockup/desktop-examples.png",
            "qtcreator/welcomescreen/widgets/images/mockup/thread-examples.png",
            "qtcreator/welcomescreen/widgets/images/mockup/qtscript-examples.png",
            "qtcreator/welcomescreen/widgets/images/mockup/itemview-examples.png",
            "qtcreator/welcomescreen/widgets/images/mockup/penguin.png",
            "qtcreator/welcomescreen/widgets/images/mockup/opengl-examples.png",
            "qtcreator/welcomescreen/widgets/images/mockup/draganddrop-examples.png",
            "qtcreator/welcomescreen/widgets/images/mockup/network-examples.png",
        ]
    }

    Group {
        qbs.installDir: "share/qtcreator/styles"
        fileTags: ["install"]
        files: [
            "qtcreator/styles/darkvim.xml",
            "qtcreator/styles/default.xml",
            "qtcreator/styles/intellij.xml",
            "qtcreator/styles/grayscale.xml",
            "qtcreator/styles/inkpot.xml",
        ]
    }

    Group {
        qbs.installDir: "share/qtcreator/qml/qmlpuppet/container"
        fileTags: ["install"]
        files: [
            "qtcreator/qml/qmlpuppet/container/reparentcontainer.h",
            "qtcreator/qml/qmlpuppet/container/informationcontainer.cpp",
            "qtcreator/qml/qmlpuppet/container/propertyabstractcontainer.cpp",
            "qtcreator/qml/qmlpuppet/container/instancecontainer.cpp",
            "qtcreator/qml/qmlpuppet/container/propertybindingcontainer.h",
            "qtcreator/qml/qmlpuppet/container/imagecontainer.h",
            "qtcreator/qml/qmlpuppet/container/imagecontainer.cpp",
            "qtcreator/qml/qmlpuppet/container/propertyvaluecontainer.h",
            "qtcreator/qml/qmlpuppet/container/propertyvaluecontainer.cpp",
            "qtcreator/qml/qmlpuppet/container/propertybindingcontainer.cpp",
            "qtcreator/qml/qmlpuppet/container/idcontainer.h",
            "qtcreator/qml/qmlpuppet/container/idcontainer.cpp",
            "qtcreator/qml/qmlpuppet/container/addimportcontainer.cpp",
            "qtcreator/qml/qmlpuppet/container/informationcontainer.h",
            "qtcreator/qml/qmlpuppet/container/reparentcontainer.cpp",
            "qtcreator/qml/qmlpuppet/container/instancecontainer.h",
            "qtcreator/qml/qmlpuppet/container/addimportcontainer.h",
            "qtcreator/qml/qmlpuppet/container/propertyabstractcontainer.h",
        ]
    }

    Group {
        qbs.installDir: "share/qtcreator/qmldesigner/propertyeditor/Qt"
        fileTags: ["install"]
        files: [
            "qtcreator/qmldesigner/propertyeditor/Qt/FlickableGroupBox.qml",
            "qtcreator/qmldesigner/propertyeditor/Qt/ColorScheme.qml",
            "qtcreator/qmldesigner/propertyeditor/Qt/Type.qml",
            "qtcreator/qmldesigner/propertyeditor/Qt/ColorGroupBox.qml",
            "qtcreator/qmldesigner/propertyeditor/Qt/ExtendedPane.qml",
            "qtcreator/qmldesigner/propertyeditor/Qt/FontStyleButtons.qml",
            "qtcreator/qmldesigner/propertyeditor/Qt/FlagedButton.qml",
            "qtcreator/qmldesigner/propertyeditor/Qt/FlowSpecifics.qml",
            "qtcreator/qmldesigner/propertyeditor/Qt/ExtendedSwitches.qml",
            "qtcreator/qmldesigner/propertyeditor/Qt/PropertyFrame.qml",
            "qtcreator/qmldesigner/propertyeditor/Qt/PlaceHolder.qml",
            "qtcreator/qmldesigner/propertyeditor/Qt/Extended.qml",
            "qtcreator/qmldesigner/propertyeditor/Qt/Modifiers.qml",
            "qtcreator/qmldesigner/propertyeditor/Qt/TextInputSpecifics.qml",
            "qtcreator/qmldesigner/propertyeditor/Qt/ColorLabel.qml",
            "qtcreator/qmldesigner/propertyeditor/Qt/FlipableSpecifics.qml",
            "qtcreator/qmldesigner/propertyeditor/Qt/RectangleColorGroupBox.qml",
            "qtcreator/qmldesigner/propertyeditor/Qt/HorizontalLayout.qml",
            "qtcreator/qmldesigner/propertyeditor/Qt/DoubleSpinBoxAlternate.qml",
            "qtcreator/qmldesigner/propertyeditor/Qt/TextInputGroupBox.qml",
            "qtcreator/qmldesigner/propertyeditor/Qt/TextEditor.qml",
            "qtcreator/qmldesigner/propertyeditor/Qt/PathViewSpecifics.qml",
            "qtcreator/qmldesigner/propertyeditor/Qt/ExpressionEditor.qml",
            "qtcreator/qmldesigner/propertyeditor/Qt/AlignmentVerticalButtons.qml",
            "qtcreator/qmldesigner/propertyeditor/Qt/SliderWidget.qml",
            "qtcreator/qmldesigner/propertyeditor/Qt/LineEdit.qml",
            "qtcreator/qmldesigner/propertyeditor/Qt/FlickableSpecifics.qml",
            "qtcreator/qmldesigner/propertyeditor/Qt/DoubleSpinBox.qml",
            "qtcreator/qmldesigner/propertyeditor/Qt/LayoutPane.qml",
            "qtcreator/qmldesigner/propertyeditor/Qt/RectangleSpecifics.qml",
            "qtcreator/qmldesigner/propertyeditor/Qt/RowSpecifics.qml",
            "qtcreator/qmldesigner/propertyeditor/Qt/FontComboBox.qml",
            "qtcreator/qmldesigner/propertyeditor/Qt/ItemPane.qml",
            "qtcreator/qmldesigner/propertyeditor/Qt/Layout.qml",
            "qtcreator/qmldesigner/propertyeditor/Qt/Geometry.qml",
            "qtcreator/qmldesigner/propertyeditor/Qt/GridSpecifics.qml",
            "qtcreator/qmldesigner/propertyeditor/Qt/StandardTextColorGroupBox.qml",
            "qtcreator/qmldesigner/propertyeditor/Qt/ImageSpecifics.qml",
            "qtcreator/qmldesigner/propertyeditor/Qt/AnchorButtons.qml",
            "qtcreator/qmldesigner/propertyeditor/Qt/emptyPane.qml",
            "qtcreator/qmldesigner/propertyeditor/Qt/FontGroupBox.qml",
            "qtcreator/qmldesigner/propertyeditor/Qt/HorizontalWhiteLine.qml",
            "qtcreator/qmldesigner/propertyeditor/Qt/GroupBoxOption.qml",
            "qtcreator/qmldesigner/propertyeditor/Qt/ExtendedFunctionButton.qml",
            "qtcreator/qmldesigner/propertyeditor/Qt/Switches.qml",
            "qtcreator/qmldesigner/propertyeditor/Qt/VerticalLayout.qml",
            "qtcreator/qmldesigner/propertyeditor/Qt/GridViewSpecifics.qml",
            "qtcreator/qmldesigner/propertyeditor/Qt/MouseAreaSpecifics.qml",
            "qtcreator/qmldesigner/propertyeditor/Qt/GroupBox.qml",
            "qtcreator/qmldesigner/propertyeditor/Qt/ComboBox.qml",
            "qtcreator/qmldesigner/propertyeditor/Qt/IntEditor.qml",
            "qtcreator/qmldesigner/propertyeditor/Qt/AlignmentHorizontalButtons.qml",
            "qtcreator/qmldesigner/propertyeditor/Qt/Label.qml",
            "qtcreator/qmldesigner/propertyeditor/Qt/TextEditSpecifics.qml",
            "qtcreator/qmldesigner/propertyeditor/Qt/ListViewSpecifics.qml",
            "qtcreator/qmldesigner/propertyeditor/Qt/BorderImageSpecifics.qml",
            "qtcreator/qmldesigner/propertyeditor/Qt/Visibility.qml",
            "qtcreator/qmldesigner/propertyeditor/Qt/Transformation.qml",
            "qtcreator/qmldesigner/propertyeditor/Qt/AnchorBox.qml",
            "qtcreator/qmldesigner/propertyeditor/Qt/ScrollArea.qml",
            "qtcreator/qmldesigner/propertyeditor/Qt/CheckBox.qml",
            "qtcreator/qmldesigner/propertyeditor/Qt/TextSpecifics.qml",
            "qtcreator/qmldesigner/propertyeditor/Qt/StandardTextGroupBox.qml",
            "qtcreator/qmldesigner/propertyeditor/Qt/SpinBox.qml",
            "qtcreator/qmldesigner/propertyeditor/Qt/ColorTypeButtons.qml",
        ]
    }

    Group {
        qbs.installDir: "share/qtcreator/welcomescreen/widgets"
        fileTags: ["install"]
        files: [
            "qtcreator/welcomescreen/widgets/Feedback.qml",
            "qtcreator/welcomescreen/widgets/CustomFonts.qml",
            "qtcreator/welcomescreen/widgets/LinkedText.qml",
            "qtcreator/welcomescreen/widgets/CustomTab.qml",
            "qtcreator/welcomescreen/widgets/SearchBar.qml",
            "qtcreator/welcomescreen/widgets/CustomizedGridView.qml",
            "qtcreator/welcomescreen/widgets/Logo.qml",
            "qtcreator/welcomescreen/widgets/RecentProjects.qml",
            "qtcreator/welcomescreen/widgets/PageLoader.qml",
            "qtcreator/welcomescreen/widgets/CustomColors.qml",
            "qtcreator/welcomescreen/widgets/ProjectItem.qml",
            "qtcreator/welcomescreen/widgets/LinksBar.qml",
            "qtcreator/welcomescreen/widgets/PageCaption.qml",
            "qtcreator/welcomescreen/widgets/SessionItem.qml",
            "qtcreator/welcomescreen/widgets/Delegate.qml",
            "qtcreator/welcomescreen/widgets/RecentSessions.qml",
            "qtcreator/welcomescreen/widgets/GettingStartedItem.qml",
        ]
    }

    Group {
        qbs.installDir: "share/qtcreator/qmldesigner/propertyeditor/Qt/images"
        fileTags: ["install"]
        files: [
            "qtcreator/qmldesigner/propertyeditor/Qt/images/alignmentright-h-icon.png",
            "qtcreator/qmldesigner/propertyeditor/Qt/images/default-icon.png",
            "qtcreator/qmldesigner/propertyeditor/Qt/images/rightArrow.png",
            "qtcreator/qmldesigner/propertyeditor/Qt/images/mouse-area-icon.png",
            "qtcreator/qmldesigner/propertyeditor/Qt/images/reset-button.png",
            "qtcreator/qmldesigner/propertyeditor/Qt/images/icon_color_gradient.png",
            "qtcreator/qmldesigner/propertyeditor/Qt/images/image-icon.png",
            "qtcreator/qmldesigner/propertyeditor/Qt/images/text-edit-icon.png",
            "qtcreator/qmldesigner/propertyeditor/Qt/images/bold-h-icon.png",
            "qtcreator/qmldesigner/propertyeditor/Qt/images/standard.png",
            "qtcreator/qmldesigner/propertyeditor/Qt/images/list-icon.png",
            "qtcreator/qmldesigner/propertyeditor/Qt/images/italic-icon.png",
            "qtcreator/qmldesigner/propertyeditor/Qt/images/placeholder.png",
            "qtcreator/qmldesigner/propertyeditor/Qt/images/alignmentbottom-h-icon.png",
            "qtcreator/qmldesigner/propertyeditor/Qt/images/rect-icon.png",
            "qtcreator/qmldesigner/propertyeditor/Qt/images/alignmentleft-h-icon.png",
            "qtcreator/qmldesigner/propertyeditor/Qt/images/bold-icon.png",
            "qtcreator/qmldesigner/propertyeditor/Qt/images/blended-image-icon.png",
            "qtcreator/qmldesigner/propertyeditor/Qt/images/submenu.png",
            "qtcreator/qmldesigner/propertyeditor/Qt/images/leftArrow.png",
            "qtcreator/qmldesigner/propertyeditor/Qt/images/alignmentbottom-icon.png",
            "qtcreator/qmldesigner/propertyeditor/Qt/images/alignmentcenterh-h-icon.png",
            "qtcreator/qmldesigner/propertyeditor/Qt/images/expression.png",
            "qtcreator/qmldesigner/propertyeditor/Qt/images/downArrow.png",
            "qtcreator/qmldesigner/propertyeditor/Qt/images/alignmentmiddle-icon.png",
            "qtcreator/qmldesigner/propertyeditor/Qt/images/item-icon.png",
            "qtcreator/qmldesigner/propertyeditor/Qt/images/text-icon.png",
            "qtcreator/qmldesigner/propertyeditor/Qt/images/underline-icon.png",
            "qtcreator/qmldesigner/propertyeditor/Qt/images/alignmentleft-icon.png",
            "qtcreator/qmldesigner/propertyeditor/Qt/images/icon_color_none.png",
            "qtcreator/qmldesigner/propertyeditor/Qt/images/apply.png",
            "qtcreator/qmldesigner/propertyeditor/Qt/images/alignmentcenterh-icon.png",
            "qtcreator/qmldesigner/propertyeditor/Qt/images/alignmenttop-icon.png",
            "qtcreator/qmldesigner/propertyeditor/Qt/images/upArrow.png",
            "qtcreator/qmldesigner/propertyeditor/Qt/images/strikeout-h-icon.png",
            "qtcreator/qmldesigner/propertyeditor/Qt/images/alignmentright-icon.png",
            "qtcreator/qmldesigner/propertyeditor/Qt/images/behaivour.png",
            "qtcreator/qmldesigner/propertyeditor/Qt/images/strikeout-icon.png",
            "qtcreator/qmldesigner/propertyeditor/Qt/images/grid-icon.png",
            "qtcreator/qmldesigner/propertyeditor/Qt/images/layout.png",
            "qtcreator/qmldesigner/propertyeditor/Qt/images/underline-h-icon.png",
            "qtcreator/qmldesigner/propertyeditor/Qt/images/alignmenttop-h-icon.png",
            "qtcreator/qmldesigner/propertyeditor/Qt/images/alignmentmiddle-h-icon.png",
            "qtcreator/qmldesigner/propertyeditor/Qt/images/cancel.png",
            "qtcreator/qmldesigner/propertyeditor/Qt/images/italic-h-icon.png",
            "qtcreator/qmldesigner/propertyeditor/Qt/images/button.png",
            "qtcreator/qmldesigner/propertyeditor/Qt/images/extended.png",
            "qtcreator/qmldesigner/propertyeditor/Qt/images/icon_color_solid.png",
        ]
    }

    Group {
        qbs.installDir: "share/qtcreator/templates/wizards/plaincapp"
        fileTags: ["install"]
        files: [
            "qtcreator/templates/wizards/plaincapp/console.png",
            "qtcreator/templates/wizards/plaincapp/wizard.xml",
        ]
    }

    Group {
        qbs.installDir: "share/qtcreator/templates/wizards/plaincppapp"
        fileTags: ["install"]
        files: [
            "qtcreator/templates/wizards/plaincppapp/console.png",
            "qtcreator/templates/wizards/plaincppapp/wizard.xml",
            "qtcreator/templates/wizards/plaincppapp/main.cpp",
        ]
    }

    Group {
        qbs.installDir: "share/qtcreator/qml/qmlpuppet/qml2puppet/instances"
        fileTags: ["install"]
        files: [
            "qtcreator/qml/qmlpuppet/qml2puppet/instances/sgitemnodeinstance.h",
            "qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5informationnodeinstanceserver.cpp",
            "qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5previewnodeinstanceserver.cpp",
            "qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5nodeinstanceserver.cpp",
            "qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5nodeinstanceclientproxy.cpp",
            "qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5previewnodeinstanceserver.h",
            "qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5rendernodeinstanceserver.h",
            "qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5informationnodeinstanceserver.h",
            "qtcreator/qml/qmlpuppet/qml2puppet/instances/sgitemnodeinstance.cpp",
            "qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5rendernodeinstanceserver.cpp",
            "qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5nodeinstanceserver.h",
            "qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5nodeinstanceclientproxy.h",
        ]
    }

    Group {
        qbs.installDir: "share/qtcreator/qml/qmljsdebugger/include/qt_private"
        fileTags: ["install"]
        files: [
            "qtcreator/qml/qmljsdebugger/include/qt_private/qdeclarativedebughelper_p.h",
            "qtcreator/qml/qmljsdebugger/include/qt_private/qdeclarativedebugservice_p.h",
            "qtcreator/qml/qmljsdebugger/include/qt_private/qdeclarativestate_p.h",
        ]
    }

    Group {
        qbs.installDir: "share/qtcreator/qml/qmlobserver/startup"
        fileTags: ["install"]
        files: [
            "qtcreator/qml/qmlobserver/startup/startup.qml",
            "qtcreator/qml/qmlobserver/startup/white-star.png",
            "qtcreator/qml/qmlobserver/startup/Logo.qml",
            "qtcreator/qml/qmlobserver/startup/quick-blur.png",
            "qtcreator/qml/qmlobserver/startup/qt-sketch.jpg",
            "qtcreator/qml/qmlobserver/startup/quick-regular.png",
            "qtcreator/qml/qmlobserver/startup/qt-back.png",
            "qtcreator/qml/qmlobserver/startup/qt-text.png",
            "qtcreator/qml/qmlobserver/startup/startup.qrc",
            "qtcreator/qml/qmlobserver/startup/qt-front.png",
            "qtcreator/qml/qmlobserver/startup/shadow.png",
            "qtcreator/qml/qmlobserver/startup/qt-blue.jpg",
        ]
    }

    Group {
        qbs.installDir: "share/qtcreator/templates/qtquickapp/qmlapplicationviewer"
        fileTags: ["install"]
        files: [
            "qtcreator/templates/qtquickapp/qmlapplicationviewer/qmlapplicationviewer.h",
            "qtcreator/templates/qtquickapp/qmlapplicationviewer/qmlapplicationviewer.cpp",
        ]
    }

    Group {
        qbs.installDir: "share/qtcreator/designer"
        fileTags: ["install"]
        files: [
            "qtcreator/designer/templates.xml",
        ]
    }

    Group {
        qbs.installDir: "share/qtcreator/templates/wizards/plaincppapp-cmake"
        fileTags: ["install"]
        files: [
            "qtcreator/templates/wizards/plaincppapp-cmake/console.png",
            "qtcreator/templates/wizards/plaincppapp-cmake/wizard.xml",
            "qtcreator/templates/wizards/plaincppapp-cmake/main.cpp",
        ]
    }

    Group {
        qbs.installDir: "share/qtcreator/qml/qmlpuppet/instances"
        fileTags: ["install"]
        files: [
            "qtcreator/qml/qmlpuppet/instances/nodeinstanceclientproxy.h",
            "qtcreator/qml/qmlpuppet/instances/dummycontextobject.h",
            "qtcreator/qml/qmlpuppet/instances/servernodeinstance.h",
            "qtcreator/qml/qmlpuppet/instances/qmlpropertychangesnodeinstance.cpp",
            "qtcreator/qml/qmlpuppet/instances/qmlstatenodeinstance.h",
            "qtcreator/qml/qmlpuppet/instances/nodeinstancemetaobject.cpp",
            "qtcreator/qml/qmlpuppet/instances/objectnodeinstance.cpp",
            "qtcreator/qml/qmlpuppet/instances/anchorchangesnodeinstance.cpp",
            "qtcreator/qml/qmlpuppet/instances/nodeinstanceclientproxy.cpp",
            "qtcreator/qml/qmlpuppet/instances/dummynodeinstance.h",
            "qtcreator/qml/qmlpuppet/instances/nodeinstancesignalspy.cpp",
            "qtcreator/qml/qmlpuppet/instances/behaviornodeinstance.cpp",
            "qtcreator/qml/qmlpuppet/instances/anchorchangesnodeinstance.h",
            "qtcreator/qml/qmlpuppet/instances/childrenchangeeventfilter.cpp",
            "qtcreator/qml/qmlpuppet/instances/objectnodeinstance.h",
            "qtcreator/qml/qmlpuppet/instances/qmltransitionnodeinstance.cpp",
            "qtcreator/qml/qmlpuppet/instances/componentnodeinstance.cpp",
            "qtcreator/qml/qmlpuppet/instances/childrenchangeeventfilter.h",
            "qtcreator/qml/qmlpuppet/instances/nodeinstancemetaobject.h",
            "qtcreator/qml/qmlpuppet/instances/dummynodeinstance.cpp",
            "qtcreator/qml/qmlpuppet/instances/nodeinstanceserver.cpp",
            "qtcreator/qml/qmlpuppet/instances/servernodeinstance.cpp",
            "qtcreator/qml/qmlpuppet/instances/componentnodeinstance.h",
            "qtcreator/qml/qmlpuppet/instances/nodeinstanceserver.h",
            "qtcreator/qml/qmlpuppet/instances/behaviornodeinstance.h",
            "qtcreator/qml/qmlpuppet/instances/qmlstatenodeinstance.cpp",
            "qtcreator/qml/qmlpuppet/instances/nodeinstancesignalspy.h",
            "qtcreator/qml/qmlpuppet/instances/qmlpropertychangesnodeinstance.h",
            "qtcreator/qml/qmlpuppet/instances/dummycontextobject.cpp",
            "qtcreator/qml/qmlpuppet/instances/qmltransitionnodeinstance.h",
        ]
    }

    Group {
        qbs.installDir: "share/qtcreator/templates/wizards/plaincapp-cmake"
        fileTags: ["install"]
        files: [
            "qtcreator/templates/wizards/plaincapp-cmake/console.png",
            "qtcreator/templates/wizards/plaincapp-cmake/wizard.xml",
        ]
    }

    Group {
        qbs.installDir: "share/qtcreator/qml/qmldump"
        fileTags: ["install"]
        files: [
            "qtcreator/qml/qmldump/qmlstreamwriter.h",
            "qtcreator/qml/qmldump/qmlstreamwriter.cpp",
            "qtcreator/qml/qmldump/main.cpp",
        ]
    }

    Group {
        qbs.installDir: "share/qtcreator/templates/qtquickapp"
        fileTags: ["install"]
        files: [
            "qtcreator/templates/qtquickapp/main.cpp",
        ]
    }

    Group {
        qbs.installDir: "share/qtcreator/templates/qtquickapp/qml/app/qtquick10"
        fileTags: ["install"]
        files: [
            "qtcreator/templates/qtquickapp/qml/app/qtquick10/main.qml",
        ]
    }

    Group {
        qbs.installDir: "share/qtcreator/templates/shared"
        fileTags: ["install"]
        files: [
            "qtcreator/templates/shared/icon64.png",
            "qtcreator/templates/shared/icon80.png",
        ]
    }

    Group {
        qbs.installDir: "share/qtcreator/templates/wizards/qtcreatorplugin"
        fileTags: ["install"]
        files: [
            "qtcreator/templates/wizards/qtcreatorplugin/wizard.xml",
            "qtcreator/templates/wizards/qtcreatorplugin/mypluginconstants.h",
            "qtcreator/templates/wizards/qtcreatorplugin/myplugin.h",
            "qtcreator/templates/wizards/qtcreatorplugin/qtcreator_logo_24.png",
            "qtcreator/templates/wizards/qtcreatorplugin/myplugin.cpp",
            "qtcreator/templates/wizards/qtcreatorplugin/myplugin_global.h",
        ]
    }

    Group {
        qbs.installDir: "share/qtcreator/qml/qmlpuppet/qml2puppet"
        fileTags: ["install"]
        files: [
            "qtcreator/qml/qmlpuppet/qml2puppet/main.cpp",
        ]
    }

    Group {
        qbs.installDir: "share/qtcreator/templates/wizards/qml-extension"
        fileTags: ["install"]
        files: [
            "qtcreator/templates/wizards/qml-extension/object.cpp",
            "qtcreator/templates/wizards/qml-extension/object.h",
            "qtcreator/templates/wizards/qml-extension/plugin.h",
            "qtcreator/templates/wizards/qml-extension/wizard.xml",
            "qtcreator/templates/wizards/qml-extension/lib.png",
            "qtcreator/templates/wizards/qml-extension/plugin.cpp",
        ]
    }

    Group {
        qbs.installDir: "share/qtcreator/qml/qmljsdebugger/editor"
        fileTags: ["install"]
        files: [
            "qtcreator/qml/qmljsdebugger/editor/liverubberbandselectionmanipulator.cpp",
            "qtcreator/qml/qmljsdebugger/editor/subcomponentmasklayeritem.h",
            "qtcreator/qml/qmljsdebugger/editor/abstractliveedittool.cpp",
            "qtcreator/qml/qmljsdebugger/editor/liveselectiontool.cpp",
            "qtcreator/qml/qmljsdebugger/editor/abstractliveedittool.h",
            "qtcreator/qml/qmljsdebugger/editor/subcomponentmasklayeritem.cpp",
            "qtcreator/qml/qmljsdebugger/editor/boundingrecthighlighter.h",
            "qtcreator/qml/qmljsdebugger/editor/livelayeritem.h",
            "qtcreator/qml/qmljsdebugger/editor/liveselectionrectangle.cpp",
            "qtcreator/qml/qmljsdebugger/editor/liveselectionindicator.cpp",
            "qtcreator/qml/qmljsdebugger/editor/liveselectionindicator.h",
            "qtcreator/qml/qmljsdebugger/editor/liveselectionrectangle.h",
            "qtcreator/qml/qmljsdebugger/editor/colorpickertool.h",
            "qtcreator/qml/qmljsdebugger/editor/liverubberbandselectionmanipulator.h",
            "qtcreator/qml/qmljsdebugger/editor/liveselectiontool.h",
            "qtcreator/qml/qmljsdebugger/editor/livesingleselectionmanipulator.cpp",
            "qtcreator/qml/qmljsdebugger/editor/boundingrecthighlighter.cpp",
            "qtcreator/qml/qmljsdebugger/editor/zoomtool.cpp",
            "qtcreator/qml/qmljsdebugger/editor/livesingleselectionmanipulator.h",
            "qtcreator/qml/qmljsdebugger/editor/livelayeritem.cpp",
            "qtcreator/qml/qmljsdebugger/editor/zoomtool.h",
            "qtcreator/qml/qmljsdebugger/editor/colorpickertool.cpp",
        ]
    }

    Group {
        qbs.installDir: "share/qtcreator/templates/qt4project"
        fileTags: ["install"]
        files: [
            "qtcreator/templates/qt4project/mywidget.cpp",
            "qtcreator/templates/qt4project/mywidget_form.h",
            "qtcreator/templates/qt4project/widget.ui",
            "qtcreator/templates/qt4project/mywidget.h",
            "qtcreator/templates/qt4project/mywidget_form.cpp",
            "qtcreator/templates/qt4project/main.cpp",
        ]
    }

    Group {
        qbs.installDir: "share/qtcreator/qml/qmlpuppet/interfaces"
        fileTags: ["install"]
        files: [
            "qtcreator/qml/qmlpuppet/interfaces/nodeinstanceserverinterface.h",
            "qtcreator/qml/qmlpuppet/interfaces/commondefines.h",
            "qtcreator/qml/qmlpuppet/interfaces/nodeinstanceclientinterface.h",
            "qtcreator/qml/qmlpuppet/interfaces/nodeinstanceserverinterface.cpp",
        ]
    }

    Group {
        qbs.installDir: "share/qtcreator/welcomescreen/widgets/dummydata"
        fileTags: ["install"]
        files: [
            "qtcreator/welcomescreen/widgets/dummydata/pagesModel.qml",
            "qtcreator/welcomescreen/widgets/dummydata/examplesModel.qml",
            "qtcreator/welcomescreen/widgets/dummydata/mockupTags.qml",
            "qtcreator/welcomescreen/widgets/dummydata/tabsModel.qml",
        ]
    }

    Group {
        qbs.installDir: "share/qtcreator/welcomescreen"
        fileTags: ["install"]
        files: [
            "qtcreator/welcomescreen/examples.qml",
            "qtcreator/welcomescreen/gettingstarted.qml",
            "qtcreator/welcomescreen/develop.qml",
            "qtcreator/welcomescreen/images_areaofinterest.xml",
            "qtcreator/welcomescreen/tutorials.qml",
            "qtcreator/welcomescreen/welcomescreen.qml",
            "qtcreator/welcomescreen/qtcreator_tutorials.xml",
            "qtcreator/welcomescreen/examples_fallback.xml",
        ]
    }

    Group {
        qbs.installDir: "share/qtcreator/dumper/test"
        fileTags: ["install"]
        files: [
            "qtcreator/dumper/test/main.cpp",
        ]
    }

    Group {
        qbs.installDir: "share/qtcreator/qml/qmlpuppet/qmlpuppet/instances"
        fileTags: ["install"]
        files: [
            "qtcreator/qml/qmlpuppet/qmlpuppet/instances/qt4informationnodeinstanceserver.cpp",
            "qtcreator/qml/qmlpuppet/qmlpuppet/instances/qt4nodeinstanceserver.cpp",
            "qtcreator/qml/qmlpuppet/qmlpuppet/instances/qmlgraphicsitemnodeinstance.h",
            "qtcreator/qml/qmlpuppet/qmlpuppet/instances/positionernodeinstance.h",
            "qtcreator/qml/qmlpuppet/qmlpuppet/instances/qt4rendernodeinstanceserver.h",
            "qtcreator/qml/qmlpuppet/qmlpuppet/instances/qt4previewnodeinstanceserver.h",
            "qtcreator/qml/qmlpuppet/qmlpuppet/instances/qmlgraphicsitemnodeinstance.cpp",
            "qtcreator/qml/qmlpuppet/qmlpuppet/instances/qt4nodeinstanceserver.h",
            "qtcreator/qml/qmlpuppet/qmlpuppet/instances/qt4rendernodeinstanceserver.cpp",
            "qtcreator/qml/qmlpuppet/qmlpuppet/instances/graphicsobjectnodeinstance.h",
            "qtcreator/qml/qmlpuppet/qmlpuppet/instances/graphicsobjectnodeinstance.cpp",
            "qtcreator/qml/qmlpuppet/qmlpuppet/instances/qt4nodeinstanceclientproxy.cpp",
            "qtcreator/qml/qmlpuppet/qmlpuppet/instances/qt4informationnodeinstanceserver.h",
            "qtcreator/qml/qmlpuppet/qmlpuppet/instances/qt4previewnodeinstanceserver.cpp",
            "qtcreator/qml/qmlpuppet/qmlpuppet/instances/positionernodeinstance.cpp",
            "qtcreator/qml/qmlpuppet/qmlpuppet/instances/qt4nodeinstanceclientproxy.h",
        ]
    }

    Group {
        qbs.installDir: "share/qtcreator/welcomescreen/widgets/dummydata/context"
        fileTags: ["install"]
        files: [
            "qtcreator/welcomescreen/widgets/dummydata/context/ExampleDelegate.qml",
            "qtcreator/welcomescreen/widgets/dummydata/context/ExampleGridView.qml",
        ]
    }

    Group {
        qbs.installDir: "share/qtcreator/welcomescreen/widgets/images"
        fileTags: ["install"]
        files: [
            "qtcreator/welcomescreen/widgets/images/gettingStarted01.png",
            "qtcreator/welcomescreen/widgets/images/tab.png",
            "qtcreator/welcomescreen/widgets/images/gettingStarted02.png",
            "qtcreator/welcomescreen/widgets/images/arrowBig.png",
            "qtcreator/welcomescreen/widgets/images/qtcreator.png",
            "qtcreator/welcomescreen/widgets/images/more.png",
            "qtcreator/welcomescreen/widgets/images/gettingStarted03.png",
            "qtcreator/welcomescreen/widgets/images/bullet.png",
            "qtcreator/welcomescreen/widgets/images/gettingStarted04.png",
            "qtcreator/welcomescreen/widgets/images/dropshadow.png",
        ]
    }

    Group {
        qbs.installDir: "share/qtcreator/generic-highlighter"
        fileTags: ["install"]
        files: [
            "qtcreator/generic-highlighter/perl.xml",
            "qtcreator/generic-highlighter/bash.xml",
            "qtcreator/generic-highlighter/autoconf.xml",
            "qtcreator/generic-highlighter/yacc.xml",
            "qtcreator/generic-highlighter/css.xml",
            "qtcreator/generic-highlighter/cmake.xml",
            "qtcreator/generic-highlighter/alert.xml",
            "qtcreator/generic-highlighter/dtd.xml",
            "qtcreator/generic-highlighter/valgrind-suppression.xml",
            "qtcreator/generic-highlighter/doxygen.xml",
            "qtcreator/generic-highlighter/ini.xml",
            "qtcreator/generic-highlighter/java.xml",
            "qtcreator/generic-highlighter/javadoc.xml",
            "qtcreator/generic-highlighter/xml.xml",
            "qtcreator/generic-highlighter/html.xml",
            "qtcreator/generic-highlighter/ruby.xml",
        ]
    }

    Group {
        qbs.installDir: "share/qtcreator/templates/wizards/scriptgeneratedproject"
        fileTags: ["install"]
        files: [
            "qtcreator/templates/wizards/scriptgeneratedproject/wizard_sample.xml",
        ]
    }

    Group {
        qbs.installDir: "share/qtcreator/qml/qmlobserver/browser/images"
        fileTags: ["install"]
        files: [
            "qtcreator/qml/qmlobserver/browser/images/titlebar.png",
            "qtcreator/qml/qmlobserver/browser/images/folder.png",
            "qtcreator/qml/qmlobserver/browser/images/up.png",
        ]
    }

    Group {
        qbs.installDir: "share/qtcreator/welcomescreen/dummydata"
        fileTags: ["install"]
        files: [
            "qtcreator/welcomescreen/dummydata/pagesModel.qml",
            "qtcreator/welcomescreen/dummydata/examplesModel.qml",
            "qtcreator/welcomescreen/dummydata/tutorialsModel.qml",
            "qtcreator/welcomescreen/dummydata/projectList.qml",
            "qtcreator/welcomescreen/dummydata/sessionList.qml",
        ]
    }

    Group {
        qbs.installDir: "share/qtcreator/templates/html5app/html5applicationviewer/touchnavigation"
        fileTags: ["install"]
        files: [
            "qtcreator/templates/html5app/html5applicationviewer/touchnavigation/webtouchscroller.h",
            "qtcreator/templates/html5app/html5applicationviewer/touchnavigation/navigationcontroller.cpp",
            "qtcreator/templates/html5app/html5applicationviewer/touchnavigation/webtouchnavigation.h",
            "qtcreator/templates/html5app/html5applicationviewer/touchnavigation/webtouchphysics.h",
            "qtcreator/templates/html5app/html5applicationviewer/touchnavigation/webnavigation.cpp",
            "qtcreator/templates/html5app/html5applicationviewer/touchnavigation/webtouchscroller.cpp",
            "qtcreator/templates/html5app/html5applicationviewer/touchnavigation/webtouchphysics.cpp",
            "qtcreator/templates/html5app/html5applicationviewer/touchnavigation/webtouchevent.cpp",
            "qtcreator/templates/html5app/html5applicationviewer/touchnavigation/webtouchphysicsinterface.cpp",
            "qtcreator/templates/html5app/html5applicationviewer/touchnavigation/navigationcontroller.h",
            "qtcreator/templates/html5app/html5applicationviewer/touchnavigation/webtouchnavigation.cpp",
            "qtcreator/templates/html5app/html5applicationviewer/touchnavigation/webtouchevent.h",
            "qtcreator/templates/html5app/html5applicationviewer/touchnavigation/webnavigation.h",
            "qtcreator/templates/html5app/html5applicationviewer/touchnavigation/webtouchphysicsinterface.h",
        ]
    }

    Group {
        qbs.installDir: "share/qtcreator/templates/qt4project/customwidgetwizard"
        fileTags: ["install"]
        files: [
            "qtcreator/templates/qt4project/customwidgetwizard/tpl_resources.qrc",
            "qtcreator/templates/qt4project/customwidgetwizard/tpl_widget.h",
            "qtcreator/templates/qt4project/customwidgetwizard/tpl_collection.h",
            "qtcreator/templates/qt4project/customwidgetwizard/tpl_single.h",
            "qtcreator/templates/qt4project/customwidgetwizard/tpl_collection.cpp",
            "qtcreator/templates/qt4project/customwidgetwizard/tpl_widget.cpp",
            "qtcreator/templates/qt4project/customwidgetwizard/tpl_single.cpp",
        ]
    }

    Group {
        qbs.installDir: "share/qtcreator/qmldesigner/propertyeditor/QtWebKit"
        fileTags: ["install"]
        files: [
            "qtcreator/qmldesigner/propertyeditor/QtWebKit/WebViewSpecifics.qml",
        ]
    }

    Group {
        qbs.installDir: "share/qtcreator/qml/qmljsdebugger"
        fileTags: ["install"]
        files: [
            "qtcreator/qml/qmljsdebugger/jsdebuggeragent.cpp",
            "qtcreator/qml/qmljsdebugger/qdeclarativeviewinspector.cpp",
            "qtcreator/qml/qmljsdebugger/qdeclarativeinspectorservice.cpp",
            "qtcreator/qml/qmljsdebugger/qdeclarativeviewinspector_p.h",
        ]
    }

    Group {
        qbs.installDir: "share/qtcreator/snippets"
        fileTags: ["install"]
        files: [
            "qtcreator/snippets/cpp.xml",
            "qtcreator/snippets/text.xml",
            "qtcreator/snippets/qml.xml",
        ]
    }

    Group {
        qbs.installDir: "share/qtcreator/templates/mobileapp"
        fileTags: ["install"]
        files: [
            "qtcreator/templates/mobileapp/mainwindow.h",
            "qtcreator/templates/mobileapp/mainwindow.ui",
            "qtcreator/templates/mobileapp/mainwindow.cpp",
            "qtcreator/templates/mobileapp/main.cpp",
        ]
    }

    Group {
        qbs.installDir: "share/qtcreator/designer/templates"
        fileTags: ["install"]
        files: [
            "qtcreator/designer/templates/Main_Window.ui",
            "qtcreator/designer/templates/Widget.ui",
            "qtcreator/designer/templates/Dialog_with_Buttons_Right.ui",
            "qtcreator/designer/templates/Dialog_with_Buttons_Bottom.ui",
            "qtcreator/designer/templates/Dialog_without_Buttons.ui",
        ]
    }

    Group {
        qbs.installDir: "share/qtcreator/templates/html5app/html5applicationviewer"
        fileTags: ["install"]
        files: [
            "qtcreator/templates/html5app/html5applicationviewer/html5applicationviewer.cpp",
            "qtcreator/templates/html5app/html5applicationviewer/html5applicationviewer.h",
        ]
    }

    Group {
        qbs.installDir: "share/qtcreator/qml/qmljsdebugger/protocol"
        fileTags: ["install"]
        files: [
            "qtcreator/qml/qmljsdebugger/protocol/inspectorprotocol.h",
        ]
    }

    Group {
        qbs.installDir: "share/qtcreator/dumper"
        fileTags: ["install"]
        files: [
            "qtcreator/dumper/dumper_p.h",
            "qtcreator/dumper/dumper.h",
            "qtcreator/dumper/dumper.cpp",
        ]
    }

    Group {
        qbs.installDir: "share/qtcreator/qml/qmlobserver"
        fileTags: ["install"]
        files: [
            "qtcreator/qml/qmlobserver/deviceorientation_symbian.cpp",
            "qtcreator/qml/qmlobserver/qdeclarativetester.cpp",
            "qtcreator/qml/qmlobserver/deviceorientation_harmattan.cpp",
            "qtcreator/qml/qmlobserver/deviceorientation.cpp",
            "qtcreator/qml/qmlobserver/proxysettings.h",
            "qtcreator/qml/qmlobserver/qmlruntime.cpp",
            "qtcreator/qml/qmlobserver/recopts.ui",
            "qtcreator/qml/qmlobserver/deviceorientation.h",
            "qtcreator/qml/qmlobserver/loggerwidget.h",
            "qtcreator/qml/qmlobserver/proxysettings.cpp",
            "qtcreator/qml/qmlobserver/loggerwidget.cpp",
            "qtcreator/qml/qmlobserver/deviceorientation_maemo5.cpp",
            "qtcreator/qml/qmlobserver/proxysettings_maemo5.ui",
            "qtcreator/qml/qmlobserver/texteditautoresizer_maemo5.h",
            "qtcreator/qml/qmlobserver/qdeclarativetester.h",
            "qtcreator/qml/qmlobserver/qmlruntime.h",
            "qtcreator/qml/qmlobserver/recopts_maemo5.ui",
            "qtcreator/qml/qmlobserver/proxysettings.ui",
            "qtcreator/qml/qmlobserver/main.cpp",
        ]
    }

    Group {
        qbs.installDir: "share/qtcreator/templates/wizards/listmodel"
        fileTags: ["install"]
        files: [
            "qtcreator/templates/wizards/listmodel/listmodel.cpp",
            "qtcreator/templates/wizards/listmodel/listmodel.h",
            "qtcreator/templates/wizards/listmodel/wizard_sample.xml",
        ]
    }

    Group {
        qbs.installDir: "share/qtcreator/qml/qmlpuppet"
        fileTags: ["install"]
        files: [
            "qtcreator/qml/qmlpuppet/qmlpuppet.qrc",
        ]
    }

    Group {
        qbs.installDir: "share/qtcreator/templates/html5app"
        fileTags: ["install"]
        files: [
            "qtcreator/templates/html5app/main.cpp",
        ]
    }

    Group {
        qbs.installDir: "share/qtcreator/templates/qtquickapp/qml/app/symbian11"
        fileTags: ["install"]
        files: [
            "qtcreator/templates/qtquickapp/qml/app/symbian11/MainPage.qml",
            "qtcreator/templates/qtquickapp/qml/app/symbian11/main.qml",
        ]
    }

    Group {
        qbs.installDir: "share/qtcreator/qml/qmlpuppet/qmlpuppet"
        fileTags: ["install"]
        files: [
            "qtcreator/qml/qmlpuppet/qmlpuppet/main.cpp",
        ]
    }

    Group {
        qbs.installDir: "share/qtcreator/qml/qmlpuppet/commands"
        fileTags: ["install"]
        files: [
            "qtcreator/qml/qmlpuppet/commands/tokencommand.h",
            "qtcreator/qml/qmlpuppet/commands/pixmapchangedcommand.cpp",
            "qtcreator/qml/qmlpuppet/commands/statepreviewimagechangedcommand.cpp",
            "qtcreator/qml/qmlpuppet/commands/changenodesourcecommand.cpp",
            "qtcreator/qml/qmlpuppet/commands/reparentinstancescommand.cpp",
            "qtcreator/qml/qmlpuppet/commands/createscenecommand.cpp",
            "qtcreator/qml/qmlpuppet/commands/changestatecommand.cpp",
            "qtcreator/qml/qmlpuppet/commands/clearscenecommand.cpp",
            "qtcreator/qml/qmlpuppet/commands/changebindingscommand.h",
            "qtcreator/qml/qmlpuppet/commands/valueschangedcommand.h",
            "qtcreator/qml/qmlpuppet/commands/childrenchangedcommand.h",
            "qtcreator/qml/qmlpuppet/commands/clearscenecommand.h",
            "qtcreator/qml/qmlpuppet/commands/changebindingscommand.cpp",
            "qtcreator/qml/qmlpuppet/commands/childrenchangedcommand.cpp",
            "qtcreator/qml/qmlpuppet/commands/createscenecommand.h",
            "qtcreator/qml/qmlpuppet/commands/completecomponentcommand.h",
            "qtcreator/qml/qmlpuppet/commands/componentcompletedcommand.cpp",
            "qtcreator/qml/qmlpuppet/commands/changeauxiliarycommand.cpp",
            "qtcreator/qml/qmlpuppet/commands/pixmapchangedcommand.h",
            "qtcreator/qml/qmlpuppet/commands/changevaluescommand.cpp",
            "qtcreator/qml/qmlpuppet/commands/createinstancescommand.cpp",
            "qtcreator/qml/qmlpuppet/commands/changevaluescommand.h",
            "qtcreator/qml/qmlpuppet/commands/synchronizecommand.cpp",
            "qtcreator/qml/qmlpuppet/commands/changeidscommand.cpp",
            "qtcreator/qml/qmlpuppet/commands/changenodesourcecommand.h",
            "qtcreator/qml/qmlpuppet/commands/removeinstancescommand.cpp",
            "qtcreator/qml/qmlpuppet/commands/changeidscommand.h",
            "qtcreator/qml/qmlpuppet/commands/synchronizecommand.h",
            "qtcreator/qml/qmlpuppet/commands/valueschangedcommand.cpp",
            "qtcreator/qml/qmlpuppet/commands/informationchangedcommand.cpp",
            "qtcreator/qml/qmlpuppet/commands/changefileurlcommand.cpp",
            "qtcreator/qml/qmlpuppet/commands/componentcompletedcommand.h",
            "qtcreator/qml/qmlpuppet/commands/removepropertiescommand.h",
            "qtcreator/qml/qmlpuppet/commands/removeinstancescommand.h",
            "qtcreator/qml/qmlpuppet/commands/changeauxiliarycommand.h",
            "qtcreator/qml/qmlpuppet/commands/informationchangedcommand.h",
            "qtcreator/qml/qmlpuppet/commands/removepropertiescommand.cpp",
            "qtcreator/qml/qmlpuppet/commands/completecomponentcommand.cpp",
            "qtcreator/qml/qmlpuppet/commands/createinstancescommand.h",
            "qtcreator/qml/qmlpuppet/commands/reparentinstancescommand.h",
            "qtcreator/qml/qmlpuppet/commands/changestatecommand.h",
            "qtcreator/qml/qmlpuppet/commands/statepreviewimagechangedcommand.h",
            "qtcreator/qml/qmlpuppet/commands/tokencommand.cpp",
            "qtcreator/qml/qmlpuppet/commands/changefileurlcommand.h",
        ]
    }

    Group {
        qbs.installDir: "share/qtcreator/templates/wizards/helloworld"
        fileTags: ["install"]
        files: [
            "qtcreator/templates/wizards/helloworld/console.png",
            "qtcreator/templates/wizards/helloworld/wizard_sample.xml",
            "qtcreator/templates/wizards/helloworld/main.cpp",
        ]
    }

    Group {
        qbs.installDir: "share/qtcreator/qml/qmlobserver/browser"
        fileTags: ["install"]
        files: [
            "qtcreator/qml/qmlobserver/browser/Browser.qml",
            "qtcreator/qml/qmlobserver/browser/browser.qrc",
        ]
    }
}