diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2005-08-30 17:58:46 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2005-08-30 17:58:46 (GMT) |
commit | 62ae06081eff9881a1ff119ff6397521d9ce5900 (patch) | |
tree | 52175f97d12d2351c30b7f8f67db603bdc5f5160 /Source/cmGlobalXCodeGenerator.cxx | |
parent | feb2d86f26b40b7b12431c21a3e60d03f6c1ed79 (diff) | |
download | CMake-62ae06081eff9881a1ff119ff6397521d9ce5900.zip CMake-62ae06081eff9881a1ff119ff6397521d9ce5900.tar.gz CMake-62ae06081eff9881a1ff119ff6397521d9ce5900.tar.bz2 |
ENH: use native Deployment and Development directories
Diffstat (limited to 'Source/cmGlobalXCodeGenerator.cxx')
-rw-r--r-- | Source/cmGlobalXCodeGenerator.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmGlobalXCodeGenerator.cxx b/Source/cmGlobalXCodeGenerator.cxx index 6056700..57ba86b 100644 --- a/Source/cmGlobalXCodeGenerator.cxx +++ b/Source/cmGlobalXCodeGenerator.cxx @@ -114,6 +114,7 @@ void cmGlobalXCodeGenerator::EnableLanguage(std::vector<std::string>const& else { mf->AddDefinition("CMAKE_CFG_INTDIR","$(CONFIGURATION)"); + mf->AddDefinition("CMAKE_CONFIGURATION_TYPES","Developement;Deployment"); } mf->AddDefinition("CMAKE_GENERATOR_CC", "gcc"); mf->AddDefinition("CMAKE_GENERATOR_CXX", "g++"); @@ -174,7 +175,7 @@ std::string cmGlobalXCodeGenerator::GenerateBuildCommand(const char* makeProgram } else { - makeCommand += " -configuration Debug"; + makeCommand += " -configuration Development"; } makeCommand += " OBJROOT=."; return makeCommand; |