diff options
Diffstat (limited to 'scripts/HeaderCheck.py')
-rw-r--r-- | scripts/HeaderCheck.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/HeaderCheck.py b/scripts/HeaderCheck.py index 6916fe344..e36ffa18e 100644 --- a/scripts/HeaderCheck.py +++ b/scripts/HeaderCheck.py @@ -32,7 +32,8 @@ def ExtractHeaders(filename): def CheckFiles(root): # Find all the lexer source code files - filePaths = glob.glob(root + "/src/*.cxx") + filePaths = glob.glob(root + "/include/*.h") + filePaths += glob.glob(root + "/src/*.cxx") SortListInsensitive(filePaths) filePaths += glob.glob(root + "/lexlib/*.cxx") filePaths += glob.glob(root + "/lexers/*.cxx") |