Interface PlatformConfig
-
- All Superinterfaces:
org.gradle.api.Named
- All Known Implementing Classes:
DefaultPlatformConfig
public interface PlatformConfig extends org.gradle.api.Named
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CompilerArgsConfiggetAssembler()CompilerArgsConfiggetcCompiler()CompilerArgsConfiggetCppCompiler()CompilerArgsConfiggetLinker()CompilerArgsConfiggetObjcCompiler()CompilerArgsConfiggetObjcppCompiler()java.lang.StringgetPlatformPath()voidsetPlatformPath(java.lang.String platformPath)
-
-
-
Method Detail
-
setPlatformPath
void setPlatformPath(java.lang.String platformPath)
-
getPlatformPath
java.lang.String getPlatformPath()
-
getCppCompiler
CompilerArgsConfig getCppCompiler()
-
getLinker
CompilerArgsConfig getLinker()
-
getcCompiler
CompilerArgsConfig getcCompiler()
-
getAssembler
CompilerArgsConfig getAssembler()
-
getObjcppCompiler
CompilerArgsConfig getObjcppCompiler()
-
getObjcCompiler
CompilerArgsConfig getObjcCompiler()
-
-