diff options
author | Brad King <brad.king@kitware.com> | 2020-05-22 14:01:08 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2020-05-22 14:06:05 (GMT) |
commit | 9c48804b6917007fb7f9d0b8c137810b3b864256 (patch) | |
tree | 6e18363dd778364cd37c70e02ef7a50f86d7408a /Source/cmSourceFile.h | |
parent | 6556e587efa8ad954126137c6ca867f1f2797b11 (diff) | |
download | CMake-9c48804b6917007fb7f9d0b8c137810b3b864256.zip CMake-9c48804b6917007fb7f9d0b8c137810b3b864256.tar.gz CMake-9c48804b6917007fb7f9d0b8c137810b3b864256.tar.bz2 |
PCH: Fix source group of per-architecture PCH headers
In commit f593b354da (PCH: Add support for multi architecture iOS
projects, 2020-04-02) we forgot to update our regex that assigns
PCH headers to the `Precompile Header File` source group to account
for the `_<arch>` suffix that can now appear on their name.
Diffstat (limited to 'Source/cmSourceFile.h')
-rw-r--r-- | Source/cmSourceFile.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmSourceFile.h b/Source/cmSourceFile.h index e527069..e2dfdc1 100644 --- a/Source/cmSourceFile.h +++ b/Source/cmSourceFile.h @@ -159,7 +159,7 @@ private: "\\.(C|F|M|c|c\\+\\+|cc|cpp|cxx|cu|f|f90|for|fpp|ftn|m|mm|" \ "rc|def|r|odl|idl|hpj|bat)$" -#define CM_PCH_REGEX "cmake_pch\\.(h|hxx)$" +#define CM_PCH_REGEX "cmake_pch(_[^.]+)?\\.(h|hxx)$" #define CM_RESOURCE_REGEX "\\.(pdf|plist|png|jpeg|jpg|storyboard|xcassets)$" |