Package com.github.maven_nar.cpptasks

Examples of com.github.maven_nar.cpptasks.CompilerParam


            String[] args, String[] endArgs, boolean relentless,
            CommandLineCompilerConfiguration config, ProgressMonitor monitor)
            throws BuildException {
        try {
            GccCCompiler clone = (GccCCompiler) this.clone();
            CompilerParam param = config.getParam("target");
            if (param != null)
                clone.setCommand(param.getValue() + "-" + this.getCommand());
            clone.supercompile(task, outputDir, sourceFiles, args, endArgs,
                    relentless, config, monitor);
        } catch (CloneNotSupportedException e) {
            supercompile(task, outputDir, sourceFiles, args, endArgs,
                    relentless, config, monitor);
View Full Code Here


            String[] args, String[] endArgs, boolean relentless,
            CommandLineCompilerConfiguration config, ProgressMonitor monitor)
            throws BuildException {
        try {
            GccCCompiler clone = (GccCCompiler) this.clone();
            CompilerParam param = config.getParam("target");
            if (param != null)
                clone.setCommand(param.getValue() + "-" + this.getCommand());
            clone.supercompile(task, outputDir, sourceFiles, args, endArgs,
                    relentless, config, monitor);
        } catch (CloneNotSupportedException e) {
            supercompile(task, outputDir, sourceFiles, args, endArgs,
                    relentless, config, monitor);
View Full Code Here

TOP

Related Classes of com.github.maven_nar.cpptasks.CompilerParam

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.