diff options
author | Brad King <brad.king@kitware.com> | 2012-03-28 12:51:14 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2012-03-28 12:59:14 (GMT) |
commit | 9a2c60eb836ae26a2cd47f3c21a810047b695db9 (patch) | |
tree | 9340b95dcb1181499f990069992a1f3900ee452d /Source/cmMakefile.cxx | |
parent | 1c489923d54592dfdd0a9421f585bb45ccf9aa44 (diff) | |
download | CMake-9a2c60eb836ae26a2cd47f3c21a810047b695db9.zip CMake-9a2c60eb836ae26a2cd47f3c21a810047b695db9.tar.gz CMake-9a2c60eb836ae26a2cd47f3c21a810047b695db9.tar.bz2 |
Classify known header file extensions as headers
Commit 328c0f65 (Simplify cmVisualStudio10TargetGenerator source
classification, 2012-03-19) introduced the first use of source
classification from cmGeneratorTarget (which originated as Makefile
generator logic) in a Visual Studio generator for handling of header
files. Fix classification of header files to match known header
extensions instead of only the HEADER_FILE_ONLY property. Make it
consistent with the "Header Files" source group.
Diffstat (limited to 'Source/cmMakefile.cxx')
-rw-r--r-- | Source/cmMakefile.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx index 56e3305..e7e5eda 100644 --- a/Source/cmMakefile.cxx +++ b/Source/cmMakefile.cxx @@ -778,8 +778,7 @@ void cmMakefile::SetLocalGenerator(cmLocalGenerator* lg) ("Source Files", "\\.(C|M|c|c\\+\\+|cc|cpp|cxx|f|f90|for|fpp" "|ftn|m|mm|rc|def|r|odl|idl|hpj|bat)$"); - this->AddSourceGroup("Header Files", - "\\.(h|hh|h\\+\\+|hm|hpp|hxx|in|txx|inl)$"); + this->AddSourceGroup("Header Files", CM_HEADER_REGEX); this->AddSourceGroup("CMake Rules", "\\.rule$"); this->AddSourceGroup("Resources", "\\.plist$"); this->AddSourceGroup("Object Files", "\\.(lo|o|obj)$"); |