-
- All Implemented Interfaces:
public interface CompilerArguments
Represents the compiler arguments for a given Kotlin source set.
-
-
Method Summary
Modifier and Type Method Description abstract List<String>
getCurrentArguments()
Return current arguments for the given source set. abstract List<String>
getDefaultArguments()
Return default arguments for the given source set. abstract List<File>
getCompileClasspath()
Return the classpath the given source set is compiled against. -
-
Method Detail
-
getCurrentArguments
abstract List<String> getCurrentArguments()
Return current arguments for the given source set.
-
getDefaultArguments
abstract List<String> getDefaultArguments()
Return default arguments for the given source set.
-
getCompileClasspath
abstract List<File> getCompileClasspath()
Return the classpath the given source set is compiled against.
-
-
-
-