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>2011-10-25 03:29:28 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-10-25 03:29:28 +0400
commit7dd63e6c40e22a5eeb7a44aed34bf1728ce13e0e (patch)
tree4f851e8282fc2c6458715b2fdc518df2c47b12d5 /build_files/cmake/project_info.py
parent5b6224c84719213883334bcd9d2c46216053fe35 (diff)
update is_c() utility function to include '.cc' and '.inl' files.
Diffstat (limited to 'build_files/cmake/project_info.py')
-rwxr-xr-xbuild_files/cmake/project_info.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/build_files/cmake/project_info.py b/build_files/cmake/project_info.py
index f57778f9858..8e813d39b64 100755
--- a/build_files/cmake/project_info.py
+++ b/build_files/cmake/project_info.py
@@ -104,7 +104,7 @@ def is_glsl(filename):
def is_c(filename):
ext = splitext(filename)[1]
- return (ext in (".c", ".cpp", ".cxx", ".m", ".mm", ".rc", ".cc"))
+ return (ext in (".c", ".cpp", ".cxx", ".m", ".mm", ".rc", ".cc", ".inl"))
def is_c_any(filename):