Merge branch 'ofw-dev' into dev

This commit is contained in:
MX
2023-07-17 20:33:26 +03:00
7 changed files with 27 additions and 7 deletions
+10 -1
View File
@@ -325,7 +325,16 @@ class AppBuildset:
def get_sdk_headers(self):
sdk_headers = []
for app in self.apps:
sdk_headers.extend([app._appdir.File(header) for header in app.sdk_headers])
sdk_headers.extend(
[
src._appdir.File(header)
for src in [
app,
*(plugin for plugin in app._plugins),
]
for header in src.sdk_headers
]
)
return sdk_headers
def get_apps_of_type(self, apptype: FlipperAppType, all_known: bool = False):