From 36fe8c0a2e876998c0428b6f6785c307d1561fe2 Mon Sep 17 00:00:00 2001 From: Campbell Barton <ideasman42@gmail.com> Date: Sat, 17 Sep 2022 14:28:42 +1000 Subject: [PATCH] check_cmake_consistency: include '*.msl' files --- check_source/check_cmake_consistency.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/check_source/check_cmake_consistency.py b/check_source/check_cmake_consistency.py index c1f0a55..9833093 100755 --- a/check_source/check_cmake_consistency.py +++ b/check_source/check_cmake_consistency.py @@ -95,7 +95,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", ".metal"}) + return (ext in {".c", ".cpp", ".cxx", ".m", ".mm", ".rc", ".cc", ".inl", ".metal", ".msl"}) def is_c_any(filename: str) -> bool: -- GitLab