@@ -14,7 +14,7 @@ plugins {
1414}
1515
1616group = " space.kscience"
17- version = " 0.3.0-dev-2 "
17+ version = " 0.3.0-dev-3 "
1818
1919repositories {
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}
0 commit comments