Skip to content

Commit c4d7b5c

Browse files
committed
feat: Allow including applets from application directories
1 parent d6a581b commit c4d7b5c

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

applications/SConscript

+6
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,11 @@ if not app_name:
2929

3030
if app_ext_dir:
3131
SConscript(app_ext_dir + "/SConscript")
32+
33+
3234
else:
3335
SConscript(app_name + "/SConscript")
36+
for d in next(os.walk(app_name + "/applets/"))[1]:
37+
f = os.path.join(app_name, 'applets', d, "SConscript")
38+
if os.path.isfile(f):
39+
SConscript(f)

0 commit comments

Comments
 (0)