ENH: Added support to pass the gccxml program location to cable if ITK_GCCXML_EXECUTABLE is set on m_Makefile.
This commit is contained in:
parent
dfb25dd982
commit
3997fdeec3
|
@ -90,6 +90,12 @@ bool cmITKWrapTclCommand::CreateCableRule(const char* configFile)
|
||||||
commandArgs.push_back(tmp);
|
commandArgs.push_back(tmp);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
const char* gccxml = m_Makefile->GetDefinition("ITK_GCCXML_EXECUTABLE");
|
||||||
|
if(gccxml)
|
||||||
|
{
|
||||||
|
commandArgs.push_back("--gccxml");
|
||||||
|
commandArgs.push_back(gccxml);
|
||||||
|
}
|
||||||
tmp = "-I";
|
tmp = "-I";
|
||||||
tmp += m_Makefile->GetStartDirectory();
|
tmp += m_Makefile->GetStartDirectory();
|
||||||
commandArgs.push_back(tmp);
|
commandArgs.push_back(tmp);
|
||||||
|
|
Loading…
Reference in New Issue