Package net.sf.antcontrib.cpptasks

Examples of net.sf.antcontrib.cpptasks.CompilerEnum


        String name = getName();
        if (name == null) return null;
       
        CompilerDef compiler = new CompilerDef();
        compiler.setProject( mojo.getAntProject() );
        CompilerEnum compilerName = new CompilerEnum();
        compilerName.setValue( name );
        compiler.setName( compilerName );

        // debug, exceptions, rtti, multiThreaded
        compiler.setDebug( debug );
        compiler.setExceptions( exceptions );
View Full Code Here

TOP

Related Classes of net.sf.antcontrib.cpptasks.CompilerEnum

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.