Exclude buildrev.h from the codelite project file.
authorduplo <duplo@38d2e660-2303-0410-9eaa-f027e97ec537>
Tue, 8 Sep 2009 13:57:58 +0000 (13:57 +0000)
committerduplo <duplo@38d2e660-2303-0410-9eaa-f027e97ec537>
Tue, 8 Sep 2009 13:57:58 +0000 (13:57 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@2906 38d2e660-2303-0410-9eaa-f027e97ec537

wizard/plugins/codelite.py

index 398a90d5ad9330bcd0fad5c2f3ee690ccb65da92..0797da98aecacf205e9f375a43888ee5b7168d5a 100644 (file)
@@ -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