diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2002-12-02 20:43:09 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2002-12-02 20:43:09 (GMT) |
commit | 82a01df535c9434787abcc26881986d85052adf7 (patch) | |
tree | 22dafa40e15cf2b6c94b04c177c791ff1ce607fe /Source/cmLocalUnixMakefileGenerator.cxx | |
parent | ddbc9e62929cba48ba520fe4184d2721db65ab53 (diff) | |
download | CMake-82a01df535c9434787abcc26881986d85052adf7.zip CMake-82a01df535c9434787abcc26881986d85052adf7.tar.gz CMake-82a01df535c9434787abcc26881986d85052adf7.tar.bz2 |
ENH: remove forced enable language call because a PROJECT command is now added to each project
Diffstat (limited to 'Source/cmLocalUnixMakefileGenerator.cxx')
-rw-r--r-- | Source/cmLocalUnixMakefileGenerator.cxx | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator.cxx b/Source/cmLocalUnixMakefileGenerator.cxx index 25cc8f5..e309bc5 100644 --- a/Source/cmLocalUnixMakefileGenerator.cxx +++ b/Source/cmLocalUnixMakefileGenerator.cxx @@ -38,15 +38,6 @@ cmLocalUnixMakefileGenerator::~cmLocalUnixMakefileGenerator() void cmLocalUnixMakefileGenerator::Generate(bool fromTheTop) { - // for backwards compatibility if niether c or cxx is - // enabled, the enable cxx - if(! (m_GlobalGenerator->GetLanguageEnabled("C") || - m_GlobalGenerator->GetLanguageEnabled("CXX"))) - { - m_GlobalGenerator->EnableLanguage("CXX",m_Makefile); - } - - // suppoirt override in output directories if (m_Makefile->GetDefinition("LIBRARY_OUTPUT_PATH")) { |