From: duplo Date: Tue, 8 Sep 2009 13:57:58 +0000 (+0000) Subject: Exclude buildrev.h from the codelite project file. X-Git-Tag: 2.2.0~62 X-Git-Url: https://codewiz.org/gitweb?a=commitdiff_plain;ds=sidebyside;h=73f44b2bb0d5fe6d39ffc894bf13ff063b19237c;p=bertos.git Exclude buildrev.h from the codelite project file. git-svn-id: https://src.develer.com/svnoss/bertos/trunk@2906 38d2e660-2303-0410-9eaa-f027e97ec537 --- diff --git a/wizard/plugins/codelite.py b/wizard/plugins/codelite.py index 398a90d5..0797da98 100644 --- a/wizard/plugins/codelite.py +++ b/wizard/plugins/codelite.py @@ -91,7 +91,7 @@ def findSources(path): if dir.find("svn") == -1 and dir != "images" and dir != "obj": file_dict[root.replace(path, "")]["dirs"].append(dir) for file in files: - if file.endswith(const.EXTENSION_FILTER): + if file.endswith(const.EXTENSION_FILTER) and file != "buildrev.h": file_dict[root.replace(path, "")]["files"].append(file) return file_dict