mirror of
https://github.com/Kitware/CMake.git
synced 2026-02-21 06:30:20 -06:00
Fix Xcode <= 2.0 projects with CMAKE_BUILD_TYPE
The dependency-helper makefiles should not have per-configuration names for Xcode <= 2.0. Older Xcodes do not support multiple configurations.
This commit is contained in:
@@ -1281,7 +1281,10 @@ void cmGlobalXCodeGenerator
|
||||
)
|
||||
{
|
||||
std::string makefileName=makefileBasename;
|
||||
makefileName+=configName;
|
||||
if(this->XcodeVersion > 20)
|
||||
{
|
||||
makefileName+=configName;
|
||||
}
|
||||
cmGeneratedFileStream makefileStream(makefileName.c_str());
|
||||
if(!makefileStream)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user