X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=wizard%2Fplugins%2Fcodelite.py;h=7f4daac885cb8d067ece5c27c01bbf879663ebf2;hb=bfab81f21ec1f468ae3f96fbee651636789c15ed;hp=f6555a8be406c8e823c2c6c514d4dfa7232287a0;hpb=bdd7308c68876dd6349412f4e7be30a785ef735a;p=bertos.git diff --git a/wizard/plugins/codelite.py b/wizard/plugins/codelite.py index f6555a8b..7f4daac8 100644 --- a/wizard/plugins/codelite.py +++ b/wizard/plugins/codelite.py @@ -99,7 +99,7 @@ def codeliteProjectGenerator(project_info): """ Returns the string rapresenting the codelite project. """ - template = open("cltemplates/bertos.project", "r").read() + template = open(os.path.join(const.DATA_DIR, "cltemplates/bertos.project"), "r").read() filelist = "\n".join(clFiles(findSources(project_info.info("PROJECT_PATH")), "")) debugger_path = project_info.info("TOOLCHAIN")["path"].replace("gcc", "gdb") init_script = project_info.info("CPU_INFOS")["GDB_INIT_SCRIPT"] @@ -118,7 +118,7 @@ def codeliteWorkspaceGenerator(project_info): """ Returns the string rapresentig the codelite workspace. """ - template = open("cltemplates/bertos.workspace", "r").read() + template = open(os.path.join(const.DATA_DIR, "cltemplates/bertos.workspace"), "r").read() project_name = os.path.basename(project_info.info("PROJECT_PATH")) while template.find("$project") != -1: template = template.replace("$project", project_name)