summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorDavid Cole <david.cole@kitware.com>2012-03-15 18:15:44 (GMT)
committerBrad King <brad.king@kitware.com>2012-03-16 18:25:21 (GMT)
commitb063599603bd3d2d3cc57495d0d060ac90f0f308 (patch)
tree2fee0c089c5cf4dc327b3b012179124e09d70cfb /Source
parentbe01f3b098a69570cc382501a3895f424c4a608f (diff)
downloadCMake-b063599603bd3d2d3cc57495d0d060ac90f0f308.zip
CMake-b063599603bd3d2d3cc57495d0d060ac90f0f308.tar.gz
CMake-b063599603bd3d2d3cc57495d0d060ac90f0f308.tar.bz2
Add a default source group for object files.
Diffstat (limited to 'Source')
-rw-r--r--Source/cmMakefile.cxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx
index aba2e38..56e3305 100644
--- a/Source/cmMakefile.cxx
+++ b/Source/cmMakefile.cxx
@@ -782,6 +782,7 @@ void cmMakefile::SetLocalGenerator(cmLocalGenerator* lg)
"\\.(h|hh|h\\+\\+|hm|hpp|hxx|in|txx|inl)$");
this->AddSourceGroup("CMake Rules", "\\.rule$");
this->AddSourceGroup("Resources", "\\.plist$");
+ this->AddSourceGroup("Object Files", "\\.(lo|o|obj)$");
#endif
this->WarnUnused = this->GetCMakeInstance()->GetWarnUnused();