2005-01-24 17:35:54 -05:00
|
|
|
#include "cmLocalXCodeGenerator.h"
|
2007-02-16 16:12:17 -05:00
|
|
|
#include "cmGlobalXCodeGenerator.h"
|
|
|
|
#include "cmSourceFile.h"
|
2005-01-24 17:35:54 -05:00
|
|
|
|
|
|
|
cmLocalXCodeGenerator::cmLocalXCodeGenerator()
|
|
|
|
{
|
2006-03-24 09:15:05 -05:00
|
|
|
// the global generator does this, so do not
|
|
|
|
// put these flags into the language flags
|
|
|
|
this->EmitUniversalBinaryFlags = false;
|
2005-01-24 17:35:54 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
cmLocalXCodeGenerator::~cmLocalXCodeGenerator()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2007-02-16 16:12:17 -05:00
|
|
|
void cmLocalXCodeGenerator::
|
|
|
|
GetTargetObjectFileDirectories(cmTarget* target,
|
|
|
|
std::vector<std::string>&
|
|
|
|
dirs)
|
|
|
|
{
|
2007-02-17 08:46:25 -05:00
|
|
|
cmGlobalXCodeGenerator* g =
|
|
|
|
(cmGlobalXCodeGenerator*)this->GetGlobalGenerator();
|
2007-02-16 16:12:17 -05:00
|
|
|
g->SetCurrentLocalGenerator(this);
|
|
|
|
g->GetTargetObjectFileDirectories(target,
|
|
|
|
dirs);
|
|
|
|
}
|