Package org.gradle.language.nativeplatform.internal

Examples of org.gradle.language.nativeplatform.internal.CompileTaskConfig


            tools.put("cppCompiler", DefaultPreprocessingTool.class);
            return tools;
        }

        public SourceTransformTaskConfig getTransformTask() {
            return new CompileTaskConfig(this, CppCompile.class);
        }
View Full Code Here


            return tools;
        }


        public SourceTransformTaskConfig getTransformTask() {
            return new CompileTaskConfig(this, CCompile.class);
        }
View Full Code Here

            tools.put("objcppCompiler", DefaultPreprocessingTool.class);
            return tools;
        }

        public SourceTransformTaskConfig getTransformTask() {
            return new CompileTaskConfig(this, ObjectiveCppCompile.class);
        }
View Full Code Here

            tools.put("objcCompiler", DefaultPreprocessingTool.class);
            return tools;
        }

        public SourceTransformTaskConfig getTransformTask() {
            return new CompileTaskConfig(this, ObjectiveCCompile.class);
        }
View Full Code Here

TOP

Related Classes of org.gradle.language.nativeplatform.internal.CompileTaskConfig

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.