Source libraries: Improve flag description
This commit is contained in:
committed by
Ilya Matveev
parent
5a5b8ad295
commit
0dd65bbeaf
@@ -120,8 +120,8 @@ class K2NativeCompilerArguments : CommonCompilerArguments() {
|
|||||||
@Argument(
|
@Argument(
|
||||||
value = "-Xexport-library",
|
value = "-Xexport-library",
|
||||||
valueDescription = "<path>",
|
valueDescription = "<path>",
|
||||||
description = "Path to the library to be included into produced framework API\n" +
|
description = "A library to be included into produced framework API.\n" +
|
||||||
"Must be the path of a library passed with '-library'",
|
"Must be one of libraries passed with '-library'",
|
||||||
delimiter = ""
|
delimiter = ""
|
||||||
)
|
)
|
||||||
var exportedLibraries: Array<String>? = null
|
var exportedLibraries: Array<String>? = null
|
||||||
@@ -157,12 +157,11 @@ class K2NativeCompilerArguments : CommonCompilerArguments() {
|
|||||||
@Argument(value = "-Xruntime", deprecatedName = "--runtime", valueDescription = "<path>", description = "Override standard 'runtime.bc' location")
|
@Argument(value = "-Xruntime", deprecatedName = "--runtime", valueDescription = "<path>", description = "Override standard 'runtime.bc' location")
|
||||||
var runtimeFile: String? = null
|
var runtimeFile: String? = null
|
||||||
|
|
||||||
// TODO: Rename?
|
|
||||||
// TODO: Improve description
|
|
||||||
@Argument(
|
@Argument(
|
||||||
value = SOURCE_LIBRARY_ARG,
|
value = SOURCE_LIBRARY_ARG,
|
||||||
valueDescription = "<path>",
|
valueDescription = "<path>",
|
||||||
description = "Produce an output binary from a klibrary instead of source files"
|
description = "A library to be processed in the same manner as source files (test processing, ObjC export etc).\n" +
|
||||||
|
"Must be one of libraries passed with '-library'"
|
||||||
)
|
)
|
||||||
var sourceLibraries: Array<String>? = null
|
var sourceLibraries: Array<String>? = null
|
||||||
|
|
||||||
@@ -194,7 +193,8 @@ class K2NativeCompilerArguments : CommonCompilerArguments() {
|
|||||||
@Argument(
|
@Argument(
|
||||||
value = "-Xlibrary-to-cover",
|
value = "-Xlibrary-to-cover",
|
||||||
valueDescription = "<path>",
|
valueDescription = "<path>",
|
||||||
description = "Path to library that should be covered.",
|
description = "A library that should be covered.\n" +
|
||||||
|
"Must be one of libraries passed with '-library'",
|
||||||
delimiter = ""
|
delimiter = ""
|
||||||
)
|
)
|
||||||
var coveredLibraries: Array<String>? = null
|
var coveredLibraries: Array<String>? = null
|
||||||
|
|||||||
Reference in New Issue
Block a user