ENH: Added generation of --gccxml-cxxflags option to complement --gccxml-compiler.
This commit is contained in:
parent
56f2d45191
commit
61a9bddb4c
|
@ -88,6 +88,10 @@ bool cmITKWrapTclCommand::CreateCableRule(const char* configFile)
|
||||||
{
|
{
|
||||||
commandArgs.push_back("--gccxml-compiler");
|
commandArgs.push_back("--gccxml-compiler");
|
||||||
commandArgs.push_back(tmp);
|
commandArgs.push_back(tmp);
|
||||||
|
tmp = "${CMAKE_CXX_FLAGS}";
|
||||||
|
m_Makefile->ExpandVariablesInString(tmp);
|
||||||
|
commandArgs.push_back("--gccxml-cxxflags");
|
||||||
|
commandArgs.push_back(tmp);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
const char* gccxml = m_Makefile->GetDefinition("ITK_GCCXML_EXECUTABLE");
|
const char* gccxml = m_Makefile->GetDefinition("ITK_GCCXML_EXECUTABLE");
|
||||||
|
|
Loading…
Reference in New Issue