Esempio n. 1
0
 protected void addImpliedArgs(CCTask task, boolean debug, LinkType linkType, Vector args) {
   super.addImpliedArgs(task, debug, linkType, args);
   if (getIdentifier().indexOf("mingw") >= 0) {
     if (linkType.isSubsystemConsole()) {
       args.addElement("-mconsole");
     }
     if (linkType.isSubsystemGUI()) {
       args.addElement("-mwindows");
     }
   }
 }