From 7dd63e6c40e22a5eeb7a44aed34bf1728ce13e0e Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 24 Oct 2011 23:29:28 +0000 Subject: update is_c() utility function to include '.cc' and '.inl' files. --- build_files/cmake/project_info.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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): -- cgit v1.2.3