aboutsummaryrefslogtreecommitdiff
path: root/integration
diff options
context:
space:
mode:
authorZubakov <aleks.zubakov@gmail.com>2018-09-13 00:17:50 +0300
committerZubakov <aleks.zubakov@gmail.com>2018-09-13 00:17:50 +0300
commit6fc26eb93e2b86d77f917bee495ba79286791216 (patch)
treeba2413bd27c955a5e3dc8638e9d60e852f3dbcf2 /integration
parent2b21b8b3ea3e6e79895491045bdb8361325dce15 (diff)
downloaddokka-6fc26eb93e2b86d77f917bee495ba79286791216.tar.gz
dokka-6fc26eb93e2b86d77f917bee495ba79286791216.tar.bz2
dokka-6fc26eb93e2b86d77f917bee495ba79286791216.zip
Added native support
Diffstat (limited to 'integration')
-rw-r--r--integration/src/main/kotlin/org/jetbrains/dokka/configuration.kt2
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")
}