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>2022-01-06 05:54:54 +0300
committerCampbell Barton <ideasman42@gmail.com>2022-01-06 05:54:54 +0300
commited68e18c1c45aea07ec17c0b0dcdc109ad7492db (patch)
treeca23e6a1f0f69cef50d6bf8eacfefc867e09452a /build_files/cmake
parent2ee37e9031ecd824526e0bb466d9ecea43a12671 (diff)
Cleanup: remove unnecessary slashes and quotes from paths in CMake
Diffstat (limited to 'build_files/cmake')
-rwxr-xr-xbuild_files/cmake/cmake_consistency_check.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/build_files/cmake/cmake_consistency_check.py b/build_files/cmake/cmake_consistency_check.py
index c62e5fc0b59..d3dc9ff55ba 100755
--- a/build_files/cmake/cmake_consistency_check.py
+++ b/build_files/cmake/cmake_consistency_check.py
@@ -114,7 +114,7 @@ def is_c_header(filename: str) -> bool:
def is_c(filename: str) -> bool:
ext = splitext(filename)[1]
- return (ext in {".c", ".cpp", ".cxx", ".m", ".mm", ".rc", ".cc", ".inl"})
+ return (ext in {".c", ".cpp", ".cxx", ".m", ".mm", ".rc", ".cc", ".inl", ".metal"})
def is_c_any(filename: str) -> bool: