X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=wizard%2Fbertos_utils.py;h=5bf0b4306204ba1db4dbf89e7a2dc2ff8f6f6663;hb=6fb67bc94e1d53acc1e1b339f22bb7d4f2f7dea3;hp=5d08f54db01d1ebbadf9cf9d0cbd160572a5d7c8;hpb=3001f6f9ca19a6dd354cb1f82425253484c5468b;p=bertos.git diff --git a/wizard/bertos_utils.py b/wizard/bertos_utils.py index 5d08f54d..5bf0b430 100644 --- a/wizard/bertos_utils.py +++ b/wizard/bertos_utils.py @@ -95,9 +95,11 @@ def createBertosProject(project_info): main = open("srctemplates/main.c", "r").read() open(prjdir + "/main.c", "w").write(main) # Files for selected plugins + relevants_files = {} for plugin in project_info.info("OUTPUT"): module = getattr(__import__("plugins", {}, {}, [plugin]), plugin) - module.createProject(project_info) + relevants_files[plugin] = module.createProject(project_info) + project_info.setInfo("RELEVANTS_FILES", relevants_files) def mkGenerator(project_info, makefile): """