-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathCMakeLists.txt
749 lines (731 loc) · 23.1 KB
/
CMakeLists.txt
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
set(target_name openstudio_lib)
include_directories(${CMAKE_CURRENT_BINARY_DIR})
include_directories(${QT_INCLUDES})
# source files
set(${target_name}_SRC
ApplyMeasureNowDialog.cpp
ApplyMeasureNowDialog.hpp
BCLComponentItem.cpp
BCLComponentItem.hpp
BuildingInspectorView.cpp
BuildingInspectorView.hpp
CollapsibleInspector.cpp
CollapsibleInspector.hpp
ConstructionCfactorUndergroundWallInspectorView.cpp
ConstructionCfactorUndergroundWallInspectorView.hpp
ConstructionFfactorGroundFloorInspectorView.cpp
ConstructionFfactorGroundFloorInspectorView.hpp
ConstructionInspectorView.cpp
ConstructionInspectorView.hpp
ConstructionAirBoundaryInspectorView.cpp
ConstructionAirBoundaryInspectorView.hpp
ConstructionInternalSourceInspectorView.cpp
ConstructionInternalSourceInspectorView.hpp
ConstructionObjectVectorController.cpp
ConstructionObjectVectorController.hpp
ConstructionsController.cpp
ConstructionsController.hpp
ConstructionsTabController.cpp
ConstructionsTabController.hpp
ConstructionsTabView.cpp
ConstructionsTabView.hpp
ConstructionsView.cpp
ConstructionsView.hpp
ConstructionWindowDataFileInspectorView.cpp
ConstructionWindowDataFileInspectorView.hpp
DefaultConstructionSetInspectorView.cpp
DefaultConstructionSetInspectorView.hpp
DefaultConstructionSetsController.cpp
DefaultConstructionSetsController.hpp
DefaultConstructionSetsView.cpp
DefaultConstructionSetsView.hpp
DesignDayGridView.cpp
DesignDayGridView.hpp
ElectricEquipmentInspectorView.cpp
ElectricEquipmentInspectorView.hpp
EMSInspectorView.hpp
EMSInspectorView.cpp
FacilityExteriorEquipmentGridView.cpp
FacilityExteriorEquipmentGridView.hpp
FacilityShadingGridView.cpp
FacilityShadingGridView.hpp
FacilityShadingControlGridView.cpp
FacilityShadingControlGridView.hpp
FacilityStoriesGridView.cpp
FacilityStoriesGridView.hpp
FacilityTabController.cpp
FacilityTabController.hpp
FacilityTabView.cpp
FacilityTabView.hpp
GasEquipmentInspectorView.cpp
GasEquipmentInspectorView.hpp
GeometryEditorController.cpp
GeometryEditorController.hpp
GeometryEditorView.cpp
GeometryEditorView.hpp
GeometryPreviewController.cpp
GeometryPreviewController.hpp
GeometryPreviewView.cpp
GeometryPreviewView.hpp
GeometryTabController.cpp
GeometryTabController.hpp
GeometryTabView.cpp
GeometryTabView.hpp
GridItem.cpp
GridItem.hpp
GridScene.cpp
GridScene.hpp
GridViewSubTab.cpp
GridViewSubTab.hpp
HorizontalTabWidget.cpp
HorizontalTabWidget.hpp
HVACSystemsController.cpp
HVACSystemsController.hpp
HVACSystemsTabController.cpp
HVACSystemsTabController.hpp
HVACSystemsTabView.cpp
HVACSystemsTabView.hpp
HVACSystemsView.cpp
HVACSystemsView.hpp
HVACTemplateHelperDialog.cpp
HVACTemplateHelperDialog.hpp
IconLibrary.cpp
IconLibrary.hpp
InspectorController.cpp
InspectorController.hpp
InspectorView.cpp
InspectorView.hpp
InternalMassInspectorView.cpp
InternalMassInspectorView.hpp
LibraryTabWidget.cpp
LibraryTabWidget.hpp
LifeCycleCostsTabView.cpp
LifeCycleCostsTabView.hpp
LightsInspectorView.cpp
LightsInspectorView.hpp
LoadsController.cpp
LoadsController.hpp
LoadsTabController.cpp
LoadsTabController.hpp
LoadsTabView.cpp
LoadsTabView.hpp
LoadsView.cpp
LoadsView.hpp
LocationTabController.cpp
LocationTabController.hpp
LocationTabView.cpp
LocationTabView.hpp
LoopChooserView.cpp
LoopChooserView.hpp
LoopLibraryDialog.cpp
LoopLibraryDialog.hpp
LoopScene.cpp
LoopScene.hpp
LuminaireInspectorView.cpp
LuminaireInspectorView.hpp
MainMenu.cpp
MainMenu.hpp
MainRightColumnController.cpp
MainRightColumnController.hpp
MainTabController.cpp
MainTabController.hpp
MainTabView.cpp
MainTabView.hpp
MainWindow.cpp
MainWindow.hpp
MaterialAirGapInspectorView.cpp
MaterialAirGapInspectorView.hpp
MaterialAirWallInspectorView.cpp
MaterialAirWallInspectorView.hpp
MaterialInfraredTransparentInspectorView.cpp
MaterialInfraredTransparentInspectorView.hpp
MaterialInspectorView.cpp
MaterialInspectorView.hpp
MaterialNoMassInspectorView.cpp
MaterialNoMassInspectorView.hpp
MaterialRoofVegetationInspectorView.cpp
MaterialRoofVegetationInspectorView.hpp
MaterialsController.cpp
MaterialsController.hpp
MaterialsView.cpp
MaterialsView.hpp
ModelObjectInspectorView.cpp
ModelObjectInspectorView.hpp
ModelObjectItem.cpp
ModelObjectItem.hpp
ModelObjectListView.cpp
ModelObjectListView.hpp
ModelObjectTreeItems.cpp
ModelObjectTreeItems.hpp
ModelObjectTreeWidget.cpp
ModelObjectTreeWidget.hpp
ModelObjectTypeItem.cpp
ModelObjectTypeItem.hpp
ModelObjectTypeListView.cpp
ModelObjectTypeListView.hpp
ModelObjectVectorController.cpp
ModelObjectVectorController.hpp
ModelSubTabController.cpp
ModelSubTabController.hpp
ModelSubTabView.cpp
ModelSubTabView.hpp
OpenStudioAPI.hpp
OSAppBase.cpp
OSAppBase.hpp
OSCollapsibleItem.cpp
OSCollapsibleItem.hpp
OSCollapsibleItemHeader.cpp
OSCollapsibleItemHeader.hpp
OSCollapsibleItemList.cpp
OSCollapsibleItemList.hpp
OSDocument.cpp
OSDocument.hpp
OSDropZone.cpp
OSDropZone.hpp
OSInspectorView.cpp
OSInspectorView.hpp
OSItem.cpp
OSItem.hpp
OSItemList.cpp
OSItemList.hpp
OSItemSelector.cpp
OSItemSelector.hpp
OSItemSelectorButtons.cpp
OSItemSelectorButtons.hpp
OSWebEnginePage.cpp
OSWebEnginePage.hpp
OSVectorController.cpp
OSVectorController.hpp
OtherEquipmentInspectorView.cpp
OtherEquipmentInspectorView.hpp
PeopleInspectorView.cpp
PeopleInspectorView.hpp
PlanarSurfaceWidget.cpp
PlanarSurfaceWidget.hpp
RadianceDialog.cpp
RadianceDialog.hpp
RefrigerationController.cpp
RefrigerationController.hpp
RefrigerationGraphicsItems.cpp
RefrigerationGraphicsItems.hpp
RefrigerationGridController.cpp
RefrigerationGridController.hpp
RefrigerationGridView.cpp
RefrigerationGridView.hpp
RefrigerationScene.cpp
RefrigerationScene.hpp
RenderingColorWidget.cpp
RenderingColorWidget.hpp
ResultsTabController.cpp
ResultsTabController.hpp
ResultsTabView.cpp
ResultsTabView.hpp
RunTabController.cpp
RunTabController.hpp
RunTabView.cpp
RunTabView.hpp
ScheduleDayView.cpp
ScheduleDayView.hpp
ScheduleDialog.cpp
ScheduleDialog.hpp
ScheduleSetInspectorView.cpp
ScheduleSetInspectorView.hpp
ScheduleSetsController.cpp
ScheduleSetsController.hpp
ScheduleSetsView.cpp
ScheduleSetsView.hpp
SchedulesTabController.cpp
SchedulesTabController.hpp
SchedulesTabView.cpp
SchedulesTabView.hpp
SchedulesView.cpp
SchedulesView.hpp
ScriptItem.cpp
ScriptItem.hpp
ScriptsTabController.cpp
ScriptsTabController.hpp
ScriptsTabView.cpp
ScriptsTabView.hpp
ServiceWaterGridItems.cpp
ServiceWaterGridItems.hpp
ServiceWaterScene.cpp
ServiceWaterScene.hpp
SimSettingsTabController.cpp
SimSettingsTabController.hpp
SimSettingsTabView.cpp
SimSettingsTabView.hpp
SimSettingsView.cpp
SimSettingsView.hpp
SpaceLoadInstancesWidget.cpp
SpaceLoadInstancesWidget.hpp
SpacesDaylightingGridView.cpp
SpacesDaylightingGridView.hpp
SpacesInteriorPartitionsGridView.cpp
SpacesInteriorPartitionsGridView.hpp
SpacesLoadsGridView.cpp
SpacesLoadsGridView.hpp
SpacesShadingGridView.cpp
SpacesShadingGridView.hpp
SpacesSpacesGridView.cpp
SpacesSpacesGridView.hpp
SpacesSubsurfacesGridView.cpp
SpacesSubsurfacesGridView.hpp
SpacesSubtabGridView.cpp
SpacesSubtabGridView.hpp
SpacesSurfacesGridView.cpp
SpacesSurfacesGridView.hpp
SpacesTabController.cpp
SpacesTabController.hpp
SpacesTabView.cpp
SpacesTabView.hpp
SpaceTypeInspectorView.cpp
SpaceTypeInspectorView.hpp
SpaceTypesController.cpp
SpaceTypesController.hpp
SpaceTypesGridView.cpp
SpaceTypesGridView.hpp
SpaceTypesTabController.cpp
SpaceTypesTabController.hpp
SpaceTypesTabView.cpp
SpaceTypesTabView.hpp
SpaceTypesView.cpp
SpaceTypesView.hpp
StandardOpaqueMaterialInspectorView.cpp
StandardOpaqueMaterialInspectorView.hpp
StandardsInformationConstructionWidget.cpp
StandardsInformationConstructionWidget.hpp
StandardsInformationMaterialWidget.cpp
StandardsInformationMaterialWidget.hpp
SteamEquipmentInspectorView.cpp
SteamEquipmentInspectorView.hpp
SubTabController.cpp
SubTabController.hpp
SubTabView.cpp
SubTabView.hpp
SummaryTabController.cpp
SummaryTabController.hpp
SummaryTabView.cpp
SummaryTabView.hpp
ThermalZonesController.cpp
ThermalZonesController.hpp
ThermalZonesGridView.cpp
ThermalZonesGridView.hpp
ThermalZonesTabController.cpp
ThermalZonesTabController.hpp
ThermalZonesTabView.cpp
ThermalZonesTabView.hpp
ThermalZonesView.cpp
ThermalZonesView.hpp
UtilityBillFuelTypeItem.cpp
UtilityBillFuelTypeItem.hpp
UtilityBillFuelTypeListView.cpp
UtilityBillFuelTypeListView.hpp
UtilityBillAllFuelTypesListView.cpp
UtilityBillAllFuelTypesListView.hpp
UtilityBillsController.cpp
UtilityBillsController.hpp
UtilityBillsView.cpp
UtilityBillsView.hpp
VariablesTabController.cpp
VariablesTabController.hpp
VariablesTabView.cpp
VariablesTabView.hpp
VerticalTabWidget.cpp
VerticalTabWidget.hpp
VRFController.cpp
VRFController.hpp
VRFGraphicsItems.cpp
VRFGraphicsItems.hpp
WaterUseEquipmentInspectorView.cpp
WaterUseEquipmentInspectorView.hpp
WindowMaterialBlindInspectorView.cpp
WindowMaterialBlindInspectorView.hpp
WindowMaterialDaylightRedirectionDeviceInspectorView.cpp
WindowMaterialDaylightRedirectionDeviceInspectorView.hpp
WindowMaterialGasInspectorView.cpp
WindowMaterialGasInspectorView.hpp
WindowMaterialGasMixtureInspectorView.cpp
WindowMaterialGasMixtureInspectorView.hpp
WindowMaterialGlazingGroupThermochromicInspectorView.cpp
WindowMaterialGlazingGroupThermochromicInspectorView.hpp
WindowMaterialGlazingInspectorView.cpp
WindowMaterialGlazingInspectorView.hpp
WindowMaterialGlazingRefractionExtinctionMethodInspectorView.cpp
WindowMaterialGlazingRefractionExtinctionMethodInspectorView.hpp
WindowMaterialScreenInspectorView.cpp
WindowMaterialScreenInspectorView.hpp
WindowMaterialShadeInspectorView.cpp
WindowMaterialShadeInspectorView.hpp
WindowMaterialSimpleGlazingSystemInspectorView.cpp
WindowMaterialSimpleGlazingSystemInspectorView.hpp
YearSettingsWidget.cpp
YearSettingsWidget.hpp
ZoneChooserView.cpp
ZoneChooserView.hpp
../shared_gui_components/BCLMeasureDialog.cpp
../shared_gui_components/BCLMeasureDialog.hpp
../shared_gui_components/BuildingComponentDialog.cpp
../shared_gui_components/BuildingComponentDialog.hpp
../shared_gui_components/BuildingComponentDialogCentralWidget.cpp
../shared_gui_components/BuildingComponentDialogCentralWidget.hpp
../shared_gui_components/BusyWidget.cpp
../shared_gui_components/BusyWidget.hpp
../shared_gui_components/Buttons.cpp
../shared_gui_components/Buttons.hpp
../shared_gui_components/CollapsibleComponent.cpp
../shared_gui_components/CollapsibleComponent.hpp
../shared_gui_components/CollapsibleComponentHeader.cpp
../shared_gui_components/CollapsibleComponentHeader.hpp
../shared_gui_components/CollapsibleComponentList.cpp
../shared_gui_components/CollapsibleComponentList.hpp
../shared_gui_components/Component.cpp
../shared_gui_components/Component.hpp
../shared_gui_components/ComponentList.cpp
../shared_gui_components/ComponentList.hpp
../shared_gui_components/EditController.cpp
../shared_gui_components/EditController.hpp
../shared_gui_components/EditView.cpp
../shared_gui_components/EditView.hpp
../shared_gui_components/FieldMethodTypedefs.hpp
../shared_gui_components/GraphicsItems.cpp
../shared_gui_components/GraphicsItems.hpp
../shared_gui_components/HeaderViews.cpp
../shared_gui_components/HeaderViews.hpp
../shared_gui_components/LocalLibrary.hpp
../shared_gui_components/LocalLibraryController.cpp
../shared_gui_components/LocalLibraryController.hpp
../shared_gui_components/LocalLibraryView.cpp
../shared_gui_components/LocalLibraryView.hpp
../shared_gui_components/LostCloudConnectionDialog.cpp
../shared_gui_components/LostCloudConnectionDialog.hpp
../shared_gui_components/MeasureBadge.cpp
../shared_gui_components/MeasureBadge.hpp
../shared_gui_components/MeasureDragData.cpp
../shared_gui_components/MeasureDragData.hpp
../shared_gui_components/MeasureManager.cpp
../shared_gui_components/MeasureManager.hpp
../shared_gui_components/NetworkProxyDialog.cpp
../shared_gui_components/NetworkProxyDialog.hpp
../shared_gui_components/OSCheckBox.cpp
../shared_gui_components/OSCheckBox.hpp
../shared_gui_components/OSCollapsibleView.cpp
../shared_gui_components/OSCollapsibleView.hpp
../shared_gui_components/OSComboBox.cpp
../shared_gui_components/OSComboBox.hpp
../shared_gui_components/OSConcepts.hpp
../shared_gui_components/OSDialog.cpp
../shared_gui_components/OSDialog.hpp
../shared_gui_components/OSDoubleEdit.cpp
../shared_gui_components/OSDoubleEdit.hpp
../shared_gui_components/OSDragableView.cpp
../shared_gui_components/OSDragableView.hpp
../shared_gui_components/OSGridController.cpp
../shared_gui_components/OSGridController.hpp
../shared_gui_components/OSGridView.cpp
../shared_gui_components/OSGridView.hpp
../shared_gui_components/OSIntegerEdit.cpp
../shared_gui_components/OSIntegerEdit.hpp
../shared_gui_components/OSLineEdit.cpp
../shared_gui_components/OSLineEdit.hpp
../shared_gui_components/OSListController.cpp
../shared_gui_components/OSListController.hpp
../shared_gui_components/OSListView.cpp
../shared_gui_components/OSListView.hpp
../shared_gui_components/OSLoadNamePixmapLineEdit.cpp
../shared_gui_components/OSLoadNamePixmapLineEdit.hpp
../shared_gui_components/OSQObjectController.cpp
../shared_gui_components/OSQObjectController.hpp
../shared_gui_components/OSQuantityEdit.cpp
../shared_gui_components/OSQuantityEdit.hpp
../shared_gui_components/OSSwitch.cpp
../shared_gui_components/OSSwitch.hpp
../shared_gui_components/OSUnsignedEdit.cpp
../shared_gui_components/OSUnsignedEdit.hpp
../shared_gui_components/OSViewSwitcher.cpp
../shared_gui_components/OSViewSwitcher.hpp
../shared_gui_components/PageNavigator.cpp
../shared_gui_components/PageNavigator.hpp
../shared_gui_components/ProcessEventsProgressBar.cpp
../shared_gui_components/ProcessEventsProgressBar.hpp
../shared_gui_components/SyncMeasuresDialog.cpp
../shared_gui_components/SyncMeasuresDialog.hpp
../shared_gui_components/SyncMeasuresDialogCentralWidget.cpp
../shared_gui_components/SyncMeasuresDialogCentralWidget.hpp
../shared_gui_components/TextEditDialog.cpp
../shared_gui_components/TextEditDialog.hpp
../shared_gui_components/TIDItemModel.cpp
../shared_gui_components/TIDItemModel.hpp
../shared_gui_components/WorkflowController.cpp
../shared_gui_components/WorkflowController.hpp
../shared_gui_components/WorkflowView.cpp
../shared_gui_components/WorkflowView.hpp
../shared_gui_components/WaitDialog.cpp
../shared_gui_components/WaitDialog.hpp
../shared_gui_components/WorkflowTools.cpp
../shared_gui_components/WorkflowTools.hpp
#"${CMAKE_CURRENT_BINARY_DIR}/SWIGRubyRuntime.h"
)
# moc files
set(${target_name}_moc
ApplyMeasureNowDialog.hpp
BCLComponentItem.hpp
BuildingInspectorView.hpp
CollapsibleInspector.hpp
ConstructionCfactorUndergroundWallInspectorView.hpp
ConstructionFfactorGroundFloorInspectorView.hpp
ConstructionInspectorView.hpp
ConstructionAirBoundaryInspectorView.hpp
ConstructionInternalSourceInspectorView.hpp
ConstructionObjectVectorController.hpp
ConstructionsController.hpp
ConstructionsTabController.hpp
ConstructionsTabView.hpp
ConstructionsView.hpp
ConstructionWindowDataFileInspectorView.hpp
DefaultConstructionSetInspectorView.hpp
DefaultConstructionSetsController.hpp
DefaultConstructionSetsView.hpp
DesignDayGridView.hpp
ElectricEquipmentInspectorView.hpp
EMSInspectorView.hpp
FacilityExteriorEquipmentGridView.hpp
FacilityShadingGridView.hpp
FacilityShadingControlGridView.hpp
FacilityStoriesGridView.hpp
FacilityTabController.hpp
FacilityTabView.hpp
GasEquipmentInspectorView.hpp
GeometryEditorController.hpp
GeometryEditorView.hpp
GeometryPreviewController.hpp
GeometryPreviewView.hpp
GeometryTabController.hpp
GeometryTabView.hpp
GridItem.hpp
GridScene.hpp
GridViewSubTab.hpp
HorizontalTabWidget.hpp
HVACSystemsController.hpp
HVACSystemsTabController.hpp
HVACSystemsTabView.hpp
HVACSystemsView.hpp
HVACTemplateHelperDialog.hpp
InspectorController.hpp
InspectorView.hpp
InternalMassInspectorView.hpp
LibraryTabWidget.hpp
LifeCycleCostsTabView.hpp
LightsInspectorView.hpp
LoadsController.hpp
LoadsTabController.hpp
LoadsTabView.hpp
LoadsView.hpp
LocationTabController.hpp
LocationTabView.hpp
LoopChooserView.hpp
LoopLibraryDialog.hpp
LoopScene.hpp
LuminaireInspectorView.hpp
MainMenu.hpp
MainRightColumnController.hpp
MainTabController.hpp
MainTabView.hpp
MainWindow.hpp
MaterialAirGapInspectorView.hpp
MaterialAirWallInspectorView.hpp
MaterialInfraredTransparentInspectorView.hpp
MaterialInspectorView.hpp
MaterialNoMassInspectorView.hpp
MaterialRoofVegetationInspectorView.hpp
MaterialsController.hpp
MaterialsView.hpp
ModelObjectInspectorView.hpp
ModelObjectItem.hpp
ModelObjectListView.hpp
ModelObjectTreeItems.hpp
ModelObjectTreeWidget.hpp
ModelObjectTypeItem.hpp
ModelObjectTypeListView.hpp
ModelObjectVectorController.hpp
ModelSubTabController.hpp
ModelSubTabView.hpp
OSAppBase.hpp
OSCollapsibleItem.hpp
OSCollapsibleItemHeader.hpp
OSCollapsibleItemList.hpp
OSDocument.hpp
OSDropZone.hpp
OSInspectorView.hpp
OSItem.hpp
OSItemList.hpp
OSItemSelector.hpp
OSItemSelectorButtons.hpp
OSWebEnginePage.hpp
OSVectorController.hpp
OtherEquipmentInspectorView.hpp
PeopleInspectorView.hpp
PlanarSurfaceWidget.hpp
RadianceDialog.hpp
RefrigerationController.hpp
RefrigerationGraphicsItems.hpp
RefrigerationGridController.hpp
RefrigerationGridView.hpp
RefrigerationScene.hpp
RenderingColorWidget.hpp
ResultsTabController.hpp
ResultsTabView.hpp
RunTabController.hpp
RunTabView.hpp
ScheduleDayView.hpp
ScheduleDialog.hpp
ScheduleSetInspectorView.hpp
ScheduleSetsController.hpp
ScheduleSetsView.hpp
SchedulesTabController.hpp
SchedulesTabView.hpp
SchedulesView.hpp
ScriptItem.hpp
ScriptsTabController.hpp
ScriptsTabView.hpp
ServiceWaterGridItems.hpp
ServiceWaterScene.hpp
SimSettingsTabController.hpp
SimSettingsTabView.hpp
SimSettingsView.hpp
SpaceLoadInstancesWidget.hpp
SpacesDaylightingGridView.hpp
SpacesInteriorPartitionsGridView.hpp
SpacesLoadsGridView.hpp
SpacesShadingGridView.hpp
SpacesSpacesGridView.hpp
SpacesSubsurfacesGridView.hpp
SpacesSubtabGridView.hpp
SpacesSurfacesGridView.hpp
SpacesTabController.hpp
SpacesTabView.hpp
SpaceTypeInspectorView.hpp
SpaceTypesController.hpp
SpaceTypesGridView.hpp
SpaceTypesTabController.hpp
SpaceTypesTabView.hpp
SpaceTypesView.hpp
StandardOpaqueMaterialInspectorView.hpp
StandardsInformationConstructionWidget.hpp
StandardsInformationMaterialWidget.hpp
SteamEquipmentInspectorView.hpp
SubTabController.hpp
SubTabView.hpp
SummaryTabController.hpp
SummaryTabView.hpp
ThermalZonesController.hpp
ThermalZonesGridView.hpp
ThermalZonesTabController.hpp
ThermalZonesTabView.hpp
ThermalZonesView.hpp
UtilityBillFuelTypeItem.hpp
UtilityBillFuelTypeListView.hpp
UtilityBillAllFuelTypesListView.hpp
UtilityBillsController.hpp
UtilityBillsView.hpp
VariablesTabController.hpp
VariablesTabView.hpp
VerticalTabWidget.hpp
VRFController.hpp
VRFGraphicsItems.hpp
WaterUseEquipmentInspectorView.hpp
WindowMaterialBlindInspectorView.hpp
WindowMaterialDaylightRedirectionDeviceInspectorView.hpp
WindowMaterialGasInspectorView.hpp
WindowMaterialGasMixtureInspectorView.hpp
WindowMaterialGlazingGroupThermochromicInspectorView.hpp
WindowMaterialGlazingInspectorView.hpp
WindowMaterialGlazingRefractionExtinctionMethodInspectorView.hpp
WindowMaterialScreenInspectorView.hpp
WindowMaterialShadeInspectorView.hpp
WindowMaterialSimpleGlazingSystemInspectorView.hpp
YearSettingsWidget.hpp
ZoneChooserView.hpp
../shared_gui_components/BCLMeasureDialog.hpp
../shared_gui_components/BuildingComponentDialog.hpp
../shared_gui_components/BuildingComponentDialogCentralWidget.hpp
../shared_gui_components/BusyWidget.hpp
../shared_gui_components/Buttons.hpp
../shared_gui_components/CollapsibleComponent.hpp
../shared_gui_components/CollapsibleComponentHeader.hpp
../shared_gui_components/CollapsibleComponentList.hpp
../shared_gui_components/Component.hpp
../shared_gui_components/ComponentList.hpp
../shared_gui_components/EditController.hpp
../shared_gui_components/EditView.hpp
../shared_gui_components/GraphicsItems.hpp
../shared_gui_components/HeaderViews.hpp
../shared_gui_components/LostCloudConnectionDialog.hpp
../shared_gui_components/LocalLibraryController.hpp
../shared_gui_components/LocalLibraryView.hpp
../shared_gui_components/MeasureBadge.hpp
../shared_gui_components/MeasureDragData.hpp
../shared_gui_components/MeasureManager.hpp
../shared_gui_components/OSCheckBox.hpp
../shared_gui_components/OSCollapsibleView.hpp
../shared_gui_components/OSComboBox.hpp
../shared_gui_components/OSDialog.hpp
../shared_gui_components/OSDoubleEdit.hpp
../shared_gui_components/OSDragableView.hpp
../shared_gui_components/OSGridController.hpp
../shared_gui_components/OSGridView.hpp
../shared_gui_components/OSIntegerEdit.hpp
../shared_gui_components/OSLineEdit.hpp
../shared_gui_components/OSListController.hpp
../shared_gui_components/OSListView.hpp
../shared_gui_components/OSLoadNamePixmapLineEdit.hpp
../shared_gui_components/OSQObjectController.hpp
../shared_gui_components/OSQuantityEdit.hpp
../shared_gui_components/OSSwitch.hpp
../shared_gui_components/OSUnsignedEdit.hpp
../shared_gui_components/OSViewSwitcher.hpp
../shared_gui_components/PageNavigator.hpp
../shared_gui_components/SyncMeasuresDialog.hpp
../shared_gui_components/SyncMeasuresDialogCentralWidget.hpp
../shared_gui_components/TextEditDialog.hpp
../shared_gui_components/TIDItemModel.hpp
../shared_gui_components/WorkflowController.hpp
../shared_gui_components/WorkflowView.hpp
../shared_gui_components/WaitDialog.hpp
../shared_gui_components/NetworkProxyDialog.hpp
)
# resource files
set(${target_name}_qrc
openstudio.qrc
)
## Qt UI generation
qt5_wrap_cpp_minimally(${target_name}_moc_src ${${target_name}_moc})
# generate rules for building source files from the resources
qt5_add_resources(${target_name}_qrcs ${${target_name}_qrc})
add_library(${target_name}
${${target_name}_SRC}
${${target_name}_moc_src}
${${target_name}_moc}
${${target_name}_qrcs}
)
set(${target_name}_depends
openstudio_modeleditor
openstudio::openstudiolib
${QT_LIBS}
)
if(WIN32)
list(APPEND ${target_name}_depends qtwinmigrate)
endif()
target_link_libraries(${target_name} ${${target_name}_depends})
AddPCH(${target_name})
set(${target_name}_test_src
test/OpenStudioLibFixture.hpp
test/OpenStudioLibFixture.cpp
test/IconLibrary_GTest.cpp
)
set(${target_name}_test_depends
${${target_name}_depends}
)
CREATE_TEST_TARGETS(${target_name} "${${target_name}_test_src}" "${${target_name}_test_depends}")
CREATE_SRC_GROUPS("${${target_name}_test_src}")
if(BUILD_TESTING)
endif()