Add the generation of the csrc
[bertos.git] / wizard / test / testModulePage.py
index 6c4f8dc7d91c2cccd56f1d5e952b34cd80c831a5..dc416b8a586b52daf0ebd088dd85db78d3a0c0d1 100644 (file)
@@ -29,11 +29,12 @@ def main():
     app.project = BProject.BProject()
     page = BModulePage.BModulePage()
     page._projectInfoStore("SOURCES_PATH", "../../")
-    page._projectInfoStore("CPU_INFOS", {"TOOLCHAIN": "avr"})
+    page._projectInfoStore("CPU_INFOS", {"TOOLCHAIN": "avr", "CPU_TAGS": []})
     bertos_utils.loadSourceTree(page._project())
     page.reloadData()
     page.show()
     app.exec_()
+    bertos_utils.csrcGenerator(app.project)
 
 
 if __name__ == '__main__':