Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2012-12-31 11:06:51 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-12-31 11:06:51 +0400
commitc9d16fd22cb55666225044604d2da3c4156de4ae (patch)
treefb6c9585943a596fac43d2b4ef8659cd022f3633 /build_files/cmake/project_source_info.py
parent827f9aa737e32cbb962864c25fa7ede88ccd99c5 (diff)
add ".hh" as an extension for source scripts.
Diffstat (limited to 'build_files/cmake/project_source_info.py')
-rw-r--r--build_files/cmake/project_source_info.py2
1 files changed, 1 insertions, 1 deletions
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):