From bdd7308c68876dd6349412f4e7be30a785ef735a Mon Sep 17 00:00:00 2001 From: duplo Date: Tue, 15 Sep 2009 13:07:49 +0000 Subject: [PATCH] Exclude doc directories from the codelite project file git-svn-id: https://src.develer.com/svnoss/bertos/trunk@2944 38d2e660-2303-0410-9eaa-f027e97ec537 --- wizard/plugins/codelite.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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": -- 2.25.1