Package net.sf.antcontrib.cpptasks

Examples of net.sf.antcontrib.cpptasks.LinkerEnum


            throw new MojoFailureException( "NAR: Please specify a <Name> as part of <Linker>" );
        }

        LinkerDef linker = new LinkerDef();
        linker.setProject( antProject );
        LinkerEnum linkerEnum = new LinkerEnum();
        linkerEnum.setValue( name );
        linker.setName( linkerEnum );

        // incremental, map
        linker.setIncremental( incremental );
        linker.setMap( map );
View Full Code Here

TOP

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

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.