X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=wizard%2Fplugins%2Fcodelite.py;h=6e14f51e61404a53b8f102883ec4b6e46927fb12;hb=6fb67bc94e1d53acc1e1b339f22bb7d4f2f7dea3;hp=76724599b745800d89044d618ea9b23669a847f0;hpb=3001f6f9ca19a6dd354cb1f82425253484c5468b;p=bertos.git diff --git a/wizard/plugins/codelite.py b/wizard/plugins/codelite.py index 76724599..6e14f51e 100644 --- a/wizard/plugins/codelite.py +++ b/wizard/plugins/codelite.py @@ -71,7 +71,7 @@ def codeliteWorkspaceGenerator(project_info): def createProject(project_info): """ - Function that creates codelite projects. + Function that creates codelite projects and return the project relevant file. """ directory = project_info.info("PROJECT_PATH") prjdir = directory + "/" + os.path.basename(directory) @@ -79,3 +79,4 @@ def createProject(project_info): open(directory + "/" + os.path.basename(prjdir) + ".workspace", "w").write(workspace) project = codeliteProjectGenerator(project_info) open(directory + "/" + os.path.basename(prjdir) + ".project", "w").write(project) + return directory + "/" + os.path.basename(prjdir) + ".workspace"