diff options
author | Eugene Petrenko <eugene.petrenko@gmail.com> | 2018-09-13 12:01:24 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-13 12:01:24 +0300 |
commit | 139df725d26491ecee061076b9f9e36ea788eecf (patch) | |
tree | 81216edba2c370912cd8fddf8534617ce8a391e5 /integration/src/main/kotlin/org | |
parent | d7791c49635fb966b089e77052617ba71f65792e (diff) | |
parent | 6fc26eb93e2b86d77f917bee495ba79286791216 (diff) | |
download | dokka-139df725d26491ecee061076b9f9e36ea788eecf.tar.gz dokka-139df725d26491ecee061076b9f9e36ea788eecf.tar.bz2 dokka-139df725d26491ecee061076b9f9e36ea788eecf.zip |
Merge pull request #356 from aleksZubakov/kotlin-website-jonnyzzz
Added native support
Diffstat (limited to 'integration/src/main/kotlin/org')
-rw-r--r-- | integration/src/main/kotlin/org/jetbrains/dokka/configuration.kt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/integration/src/main/kotlin/org/jetbrains/dokka/configuration.kt b/integration/src/main/kotlin/org/jetbrains/dokka/configuration.kt index 5f1f4bb0..7eb1d3f2 100644 --- a/integration/src/main/kotlin/org/jetbrains/dokka/configuration.kt +++ b/integration/src/main/kotlin/org/jetbrains/dokka/configuration.kt @@ -20,6 +20,7 @@ class UrlSerializer : ValueSerializer<URL?> { enum class Platform(val key: String) { jvm("jvm"), js("js"), + native("native"), common("common"); @@ -30,6 +31,7 @@ enum class Platform(val key: String) { return when (key.toLowerCase()) { jvm.key -> jvm js.key -> js + native.key -> native common.key -> common else -> TODO("write normal exception") } |