From: duplo Date: Tue, 15 Sep 2009 13:07:49 +0000 (+0000) Subject: Exclude doc directories from the codelite project file X-Git-Tag: 2.2.0~24 X-Git-Url: https://codewiz.org/gitweb?a=commitdiff_plain;h=bdd7308c68876dd6349412f4e7be30a785ef735a;p=bertos.git Exclude doc directories from the codelite project file git-svn-id: https://src.develer.com/svnoss/bertos/trunk@2944 38d2e660-2303-0410-9eaa-f027e97ec537 --- diff --git a/wizard/plugins/codelite.py b/wizard/plugins/codelite.py index 0797da98..f6555a8b 100644 --- a/wizard/plugins/codelite.py +++ b/wizard/plugins/codelite.py @@ -88,7 +88,7 @@ def findSources(path): file_dict[root.replace(path, "")] = {"dirs": [], "files": []} for dir in dirs: # TODO: place the directory name in a constant file. - if dir.find("svn") == -1 and dir != "images" and dir != "obj": + if dir.find("svn") == -1 and dir != "images" and dir != "obj" and dir != "doc": file_dict[root.replace(path, "")]["dirs"].append(dir) for file in files: if file.endswith(const.EXTENSION_FILTER) and file != "buildrev.h":