diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2004-09-03 17:24:10 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2004-09-03 17:24:10 (GMT) |
commit | 46a493ae7458119573b2185fce7084e9001de1f2 (patch) | |
tree | 9b648ac841aea2ae6a54d8b4c3f54d54e3c0867b /Source/cmLocalUnixMakefileGenerator.cxx | |
parent | c2ef51e1816fa9b82b1319b5c5c3cbfc3256cea1 (diff) | |
download | CMake-46a493ae7458119573b2185fce7084e9001de1f2.zip CMake-46a493ae7458119573b2185fce7084e9001de1f2.tar.gz CMake-46a493ae7458119573b2185fce7084e9001de1f2.tar.bz2 |
ENH: remove warnings
Diffstat (limited to 'Source/cmLocalUnixMakefileGenerator.cxx')
-rw-r--r-- | Source/cmLocalUnixMakefileGenerator.cxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator.cxx b/Source/cmLocalUnixMakefileGenerator.cxx index c760e98..e5092fe 100644 --- a/Source/cmLocalUnixMakefileGenerator.cxx +++ b/Source/cmLocalUnixMakefileGenerator.cxx @@ -2887,6 +2887,11 @@ OutputBuildObjectFromSource(std::ostream& fout, { switch(format) { + // these are all handled by the if(lang) step now + case cmSystemTools::C_FILE_FORMAT: + case cmSystemTools::CXX_FILE_FORMAT: + case cmSystemTools::FORTRAN_FILE_FORMAT: + break; case cmSystemTools::HEADER_FILE_FORMAT: return; case cmSystemTools::DEFINITION_FILE_FORMAT: |