for ( Iterator i = defs.iterator(); i.hasNext(); )
{
LinkerArgument arg = new LinkerArgument();
arg.setValue( "/def:" + i.next() );
linker.addConfiguredLinkerArg( arg );
}
}
// FIXME, this should be done in CPPTasks at some point, and may not be necessary, but was for VS 2010 beta 2
if ( os.equals( OS.WINDOWS ) && getName( null, null ).equals( "msvc" ) && !getVersion().startsWith( "6." ) )