summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2004-09-03 17:48:54 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2004-09-03 17:48:54 (GMT)
commit76efcdca06361d71f86252f5aa426e6d21047d6d (patch)
tree7e45aeccf211efa46362dc7bb33e2ce0d5501cd9
parent46a493ae7458119573b2185fce7084e9001de1f2 (diff)
downloadCMake-76efcdca06361d71f86252f5aa426e6d21047d6d.zip
CMake-76efcdca06361d71f86252f5aa426e6d21047d6d.tar.gz
CMake-76efcdca06361d71f86252f5aa426e6d21047d6d.tar.bz2
fix for darwin
-rw-r--r--Source/cmGlobalCodeWarriorGenerator.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGlobalCodeWarriorGenerator.cxx b/Source/cmGlobalCodeWarriorGenerator.cxx
index fff678a..1a5f7ff 100644
--- a/Source/cmGlobalCodeWarriorGenerator.cxx
+++ b/Source/cmGlobalCodeWarriorGenerator.cxx
@@ -36,7 +36,7 @@ void cmGlobalCodeWarriorGenerator::EnableLanguage(std::vector<std::string>const&
mf->GetRequiredDefinition("CMAKE_ROOT");
fpath += "/Templates/CMakeCodeWarriorConfig.cmake";
mf->ReadListFile(0,fpath.c_str());
- this->SetLanguageEnabled("CXX");
+ this->SetLanguageEnabled("CXX", mf);
}
}