X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=wizard%2Fplugins%2Fcodelite.py;h=f6555a8be406c8e823c2c6c514d4dfa7232287a0;hb=d14ced124d89deec72e0c8d30e8d15d6a4504b76;hp=0797da98aecacf205e9f375a43888ee5b7168d5a;hpb=73f44b2bb0d5fe6d39ffc894bf13ff063b19237c;p=bertos.git 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":