Skip to content

Commit eeecbe6

Browse files
committed
Fix documentation, update Kotlin, remove binaries configuration
1 parent 7c686c7 commit eeecbe6

File tree

2 files changed

+17
-12
lines changed

2 files changed

+17
-12
lines changed

build.gradle.kts

Lines changed: 16 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ plugins {
1414
}
1515

1616
group = "space.kscience"
17-
version = "0.3.0-dev-2"
17+
version = "0.3.0-dev-3"
1818

1919
repositories {
2020
mavenCentral()
@@ -140,13 +140,6 @@ kotlin {
140140

141141
tasks[main.cinterops["libgsl"].interopProcessingTaskName].dependsOn(writeDefFile)
142142

143-
nativeTarget.binaries {
144-
all {
145-
optimized = false
146-
debuggable = true
147-
}
148-
}
149-
150143
targets.all {
151144
compilations.all {
152145
kotlinOptions.freeCompilerArgs += "-Xopt-in=kotlin.RequiresOptIn"
@@ -178,9 +171,21 @@ afterEvaluate {
178171
dokkaSourceSets.all {
179172
val readmeFile = File(projectDir, "./README.md")
180173
if (readmeFile.exists()) includes.from(readmeFile)
181-
externalDocumentationLink("https://mipt-npm.github.io/kmath/kmath-core/kmath-core/")
182-
externalDocumentationLink("https://mipt-npm.github.io/kmath/kmath-memory/kmath-memory/")
183-
externalDocumentationLink("https://mipt-npm.github.io/kmath/kmath-complex/kmath-complex/")
174+
175+
externalDocumentationLink(
176+
"https://mipt-npm.github.io/kmath/kmath-core/",
177+
"https://mipt-npm.github.io/kmath/kmath-core/kmath-core/package-list",
178+
)
179+
180+
externalDocumentationLink(
181+
"https://mipt-npm.github.io/kmath/kmath-memory/",
182+
"https://mipt-npm.github.io/kmath/kmath-memory/kmath-memory/package-list",
183+
)
184+
185+
externalDocumentationLink(
186+
"https://mipt-npm.github.io/kmath/kmath-complex/",
187+
"https://mipt-npm.github.io/kmath/kmath-complex/kmath-complex/package-list",
188+
)
184189
}
185190
}
186191
}

settings.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ pluginManagement {
1111
id("ru.mipt.npm.gradle.project") version toolsVersion
1212
id("ru.mipt.npm.gradle.common") version toolsVersion
1313
id("de.undercouch.download") version "4.1.2"
14-
kotlin("multiplatform") version "1.5.20"
14+
kotlin("multiplatform") version "1.5.21"
1515
}
1616
}
1717

0 commit comments

Comments
 (0)