Package net.sf.antcontrib.cpptasks.compiler

Examples of net.sf.antcontrib.cpptasks.compiler.CommandLineCompiler


        Processor processor = super.getProcessor();
        if (processor == null) {
            processor = GccCCompiler.getInstance();
        }
        if (getLibtool() && processor instanceof CommandLineCompiler) {
            CommandLineCompiler compiler = (CommandLineCompiler) processor;
            processor = compiler.getLibtoolCompiler();
        }
        return processor;
    }
View Full Code Here

TOP

Related Classes of net.sf.antcontrib.cpptasks.compiler.CommandLineCompiler

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.