From c9d16fd22cb55666225044604d2da3c4156de4ae Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 31 Dec 2012 07:06:51 +0000 Subject: add ".hh" as an extension for source scripts. --- build_files/cmake/project_source_info.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'build_files/cmake/project_source_info.py') diff --git a/build_files/cmake/project_source_info.py b/build_files/cmake/project_source_info.py index 10bc36ba1a8..69d09b05ac7 100644 --- a/build_files/cmake/project_source_info.py +++ b/build_files/cmake/project_source_info.py @@ -43,7 +43,7 @@ SOURCE_DIR = abspath(SOURCE_DIR) def is_c_header(filename): ext = os.path.splitext(filename)[1] - return (ext in (".h", ".hpp", ".hxx")) + return (ext in {".h", ".hpp", ".hxx", ".hh"}) def is_c(filename): -- cgit v1.2.3