project_manager_files.cmake 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. #
  2. #
  3. # Copyright (c) Contributors to the Open 3D Engine Project.
  4. # For complete copyright and license terms please see the LICENSE at the root of this distribution.
  5. #
  6. # SPDX-License-Identifier: Apache-2.0 OR MIT
  7. #
  8. #
  9. set(FILES
  10. Source/Application.h
  11. Source/Application.cpp
  12. Source/ProjectManagerDefs.h
  13. Source/ScreenDefs.h
  14. Source/ScreenFactory.h
  15. Source/ScreenFactory.cpp
  16. Source/ScreensCtrl.h
  17. Source/ScreensCtrl.cpp
  18. Source/ScreenWidget.h
  19. Source/EngineInfo.h
  20. Source/EngineInfo.cpp
  21. Source/FormLineEditWidget.h
  22. Source/FormLineEditWidget.cpp
  23. Source/FormLineEditTagsWidget.h
  24. Source/FormLineEditTagsWidget.cpp
  25. Source/FormOptionsWidget.h
  26. Source/FormOptionsWidget.cpp
  27. Source/FormBrowseEditWidget.h
  28. Source/FormBrowseEditWidget.cpp
  29. Source/FormComboBoxWidget.h
  30. Source/FormComboBoxWidget.cpp
  31. Source/FormFolderBrowseEditWidget.h
  32. Source/FormFolderBrowseEditWidget.cpp
  33. Source/FormImageBrowseEditWidget.h
  34. Source/FormImageBrowseEditWidget.cpp
  35. Source/GemsGemRepoScreen.h
  36. Source/GemsGemRepoScreen.cpp
  37. Source/GemsSubWidget.h
  38. Source/GemsSubWidget.cpp
  39. Source/DownloadController.h
  40. Source/DownloadController.cpp
  41. Source/DownloadWorker.h
  42. Source/DownloadWorker.cpp
  43. Source/PathValidator.h
  44. Source/PathValidator.cpp
  45. Source/ProjectManagerWindow.h
  46. Source/ProjectManagerWindow.cpp
  47. Source/ProjectTemplateInfo.h
  48. Source/ProjectGemCatalogScreen.h
  49. Source/ProjectGemCatalogScreen.cpp
  50. Source/PythonBindings.h
  51. Source/PythonBindings.cpp
  52. Source/PythonBindingsInterface.h
  53. Source/ProjectInfo.h
  54. Source/ProjectInfo.cpp
  55. Source/ProjectUtils.h
  56. Source/ProjectUtils.cpp
  57. Source/ProjectBuilderWorker.h
  58. Source/ProjectBuilderWorker.cpp
  59. Source/ProjectBuilderController.h
  60. Source/ProjectBuilderController.cpp
  61. Source/ProjectExportWorker.h
  62. Source/ProjectExportWorker.cpp
  63. Source/ProjectExportController.h
  64. Source/ProjectExportController.cpp
  65. Source/UpdateProjectSettingsScreen.h
  66. Source/UpdateProjectSettingsScreen.cpp
  67. Source/NewProjectSettingsScreen.h
  68. Source/NewProjectSettingsScreen.cpp
  69. Source/CreateProjectCtrl.h
  70. Source/CreateProjectCtrl.cpp
  71. Source/UpdateProjectCtrl.h
  72. Source/UpdateProjectCtrl.cpp
  73. Source/ProjectsScreen.h
  74. Source/ProjectsScreen.cpp
  75. Source/ProjectSettingsScreen.h
  76. Source/ProjectSettingsScreen.cpp
  77. Source/EngineScreenCtrl.h
  78. Source/EngineScreenCtrl.cpp
  79. Source/EngineSettingsScreen.h
  80. Source/EngineSettingsScreen.cpp
  81. Source/ProjectButtonWidget.h
  82. Source/ProjectButtonWidget.cpp
  83. Source/ScreenHeaderWidget.h
  84. Source/ScreenHeaderWidget.cpp
  85. Source/Settings.h
  86. Source/Settings.cpp
  87. Source/SettingsInterface.h
  88. Source/LinkWidget.h
  89. Source/LinkWidget.cpp
  90. Source/TagWidget.h
  91. Source/TagWidget.cpp
  92. Source/TemplateButtonWidget.h
  93. Source/TemplateButtonWidget.cpp
  94. Source/TemplateInfo.cpp
  95. Source/TemplateInfo.h
  96. Source/ExternalLinkDialog.h
  97. Source/ExternalLinkDialog.cpp
  98. Source/AdjustableHeaderWidget.h
  99. Source/AdjustableHeaderWidget.cpp
  100. Source/AddRemoteProjectDialog.h
  101. Source/AddRemoteProjectDialog.cpp
  102. Source/AddRemoteTemplateDialog.h
  103. Source/AddRemoteTemplateDialog.cpp
  104. Source/DownloadRemoteTemplateDialog.h
  105. Source/DownloadRemoteTemplateDialog.cpp
  106. Source/TextOverflowWidget.h
  107. Source/TextOverflowWidget.cpp
  108. Source/CreateAGemScreen.h
  109. Source/CreateAGemScreen.cpp
  110. Source/EditAGemScreen.h
  111. Source/EditAGemScreen.cpp
  112. Source/GemCatalog/GemCatalogHeaderWidget.h
  113. Source/GemCatalog/GemCatalogHeaderWidget.cpp
  114. Source/GemCatalog/GemCatalogScreen.h
  115. Source/GemCatalog/GemCatalogScreen.cpp
  116. Source/GemCatalog/GemFilterTagWidget.h
  117. Source/GemCatalog/GemFilterTagWidget.cpp
  118. Source/GemCatalog/GemFilterWidget.h
  119. Source/GemCatalog/GemFilterWidget.cpp
  120. Source/GemCatalog/GemInfo.h
  121. Source/GemCatalog/GemInfo.cpp
  122. Source/GemCatalog/GemInspector.h
  123. Source/GemCatalog/GemInspector.cpp
  124. Source/GemCatalog/GemItemDelegate.h
  125. Source/GemCatalog/GemItemDelegate.cpp
  126. Source/GemCatalog/GemListView.h
  127. Source/GemCatalog/GemListView.cpp
  128. Source/GemCatalog/GemListHeaderWidget.h
  129. Source/GemCatalog/GemListHeaderWidget.cpp
  130. Source/GemCatalog/GemModel.h
  131. Source/GemCatalog/GemModel.cpp
  132. Source/GemCatalog/GemUninstallDialog.h
  133. Source/GemCatalog/GemUninstallDialog.cpp
  134. Source/GemCatalog/GemUpdateDialog.h
  135. Source/GemCatalog/GemUpdateDialog.cpp
  136. Source/GemCatalog/GemDependenciesDialog.h
  137. Source/GemCatalog/GemDependenciesDialog.cpp
  138. Source/GemCatalog/GemRequirementDialog.h
  139. Source/GemCatalog/GemRequirementDialog.cpp
  140. Source/GemCatalog/GemRequirementDelegate.h
  141. Source/GemCatalog/GemRequirementDelegate.cpp
  142. Source/GemCatalog/GemRequirementFilterProxyModel.h
  143. Source/GemCatalog/GemRequirementFilterProxyModel.cpp
  144. Source/GemCatalog/GemRequirementListView.h
  145. Source/GemCatalog/GemRequirementListView.cpp
  146. Source/GemCatalog/GemSortFilterProxyModel.h
  147. Source/GemCatalog/GemSortFilterProxyModel.cpp
  148. Source/GemRepo/GemRepoScreen.h
  149. Source/GemRepo/GemRepoScreen.cpp
  150. Source/GemRepo/GemRepoAddDialog.h
  151. Source/GemRepo/GemRepoAddDialog.cpp
  152. Source/GemRepo/GemRepoInfo.h
  153. Source/GemRepo/GemRepoInfo.cpp
  154. Source/GemRepo/GemRepoInspector.h
  155. Source/GemRepo/GemRepoInspector.cpp
  156. Source/GemRepo/GemRepoItemDelegate.h
  157. Source/GemRepo/GemRepoItemDelegate.cpp
  158. Source/GemRepo/GemRepoListView.h
  159. Source/GemRepo/GemRepoListView.cpp
  160. Source/GemRepo/GemRepoModel.h
  161. Source/GemRepo/GemRepoModel.cpp
  162. Source/GemRepo/GemRepoProxyModel.h
  163. Source/GemRepo/GemRepoProxyModel.cpp
  164. )