STYLE: use correct case for cmGlobalUnixMakefileGenerator3
make export() work with spaces in the path Alex
This commit is contained in:
parent
330062c0ce
commit
7b917000aa
|
@ -179,7 +179,7 @@ bool cmExportCommand
|
||||||
|
|
||||||
fout << "SET_TARGET_PROPERTIES(" << this->Prefix.GetString().c_str()
|
fout << "SET_TARGET_PROPERTIES(" << this->Prefix.GetString().c_str()
|
||||||
<< currentTarget->c_str() << " PROPERTIES \n"
|
<< currentTarget->c_str() << " PROPERTIES \n"
|
||||||
<< " LOCATION " << target->GetLocation(0) << "\n";
|
<<" LOCATION \""<< target->GetLocation(0)<<"\"\n";
|
||||||
for(std::vector<std::string>::const_iterator
|
for(std::vector<std::string>::const_iterator
|
||||||
currentConfig = configurationTypes.begin();
|
currentConfig = configurationTypes.begin();
|
||||||
currentConfig != configurationTypes.end();
|
currentConfig != configurationTypes.end();
|
||||||
|
@ -191,7 +191,7 @@ bool cmExportCommand
|
||||||
if (loc && *loc)
|
if (loc && *loc)
|
||||||
{
|
{
|
||||||
fout << " " << currentConfig->c_str()
|
fout << " " << currentConfig->c_str()
|
||||||
<< "_LOCATION " << loc << "\n";
|
<< "_LOCATION \'" << loc << "\"\n";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -17,7 +17,7 @@
|
||||||
#ifndef cmGlobalMSYSMakefileGenerator_h
|
#ifndef cmGlobalMSYSMakefileGenerator_h
|
||||||
#define cmGlobalMSYSMakefileGenerator_h
|
#define cmGlobalMSYSMakefileGenerator_h
|
||||||
|
|
||||||
#include "cmGlobalUNIXMakefileGenerator3.h"
|
#include "cmGlobalUnixMakefileGenerator3.h"
|
||||||
|
|
||||||
/** \class cmGlobalMSYSMakefileGenerator
|
/** \class cmGlobalMSYSMakefileGenerator
|
||||||
* \brief Write a NMake makefiles.
|
* \brief Write a NMake makefiles.
|
||||||
|
|
|
@ -17,7 +17,7 @@
|
||||||
#ifndef cmGlobalMinGWMakefileGenerator_h
|
#ifndef cmGlobalMinGWMakefileGenerator_h
|
||||||
#define cmGlobalMinGWMakefileGenerator_h
|
#define cmGlobalMinGWMakefileGenerator_h
|
||||||
|
|
||||||
#include "cmGlobalUNIXMakefileGenerator3.h"
|
#include "cmGlobalUnixMakefileGenerator3.h"
|
||||||
|
|
||||||
/** \class cmGlobalMinGWMakefileGenerator
|
/** \class cmGlobalMinGWMakefileGenerator
|
||||||
* \brief Write a NMake makefiles.
|
* \brief Write a NMake makefiles.
|
||||||
|
|
|
@ -17,7 +17,7 @@
|
||||||
#ifndef cmGlobalNMakeMakefileGenerator_h
|
#ifndef cmGlobalNMakeMakefileGenerator_h
|
||||||
#define cmGlobalNMakeMakefileGenerator_h
|
#define cmGlobalNMakeMakefileGenerator_h
|
||||||
|
|
||||||
#include "cmGlobalUNIXMakefileGenerator3.h"
|
#include "cmGlobalUnixMakefileGenerator3.h"
|
||||||
|
|
||||||
/** \class cmGlobalNMakeMakefileGenerator
|
/** \class cmGlobalNMakeMakefileGenerator
|
||||||
* \brief Write a NMake makefiles.
|
* \brief Write a NMake makefiles.
|
||||||
|
|
|
@ -17,7 +17,7 @@
|
||||||
#ifndef cmGlobalWatcomWMakeGenerator_h
|
#ifndef cmGlobalWatcomWMakeGenerator_h
|
||||||
#define cmGlobalWatcomWMakeGenerator_h
|
#define cmGlobalWatcomWMakeGenerator_h
|
||||||
|
|
||||||
#include "cmGlobalUNIXMakefileGenerator3.h"
|
#include "cmGlobalUnixMakefileGenerator3.h"
|
||||||
|
|
||||||
/** \class cmGlobalWatcomWMakeGenerator
|
/** \class cmGlobalWatcomWMakeGenerator
|
||||||
* \brief Write a NMake makefiles.
|
* \brief Write a NMake makefiles.
|
||||||
|
|
Loading…
Reference in New Issue