Skip to content

Commit 5ee4311

Browse files
committed
moved generation code in src/commonMain/kotlinGen
1 parent 3a16e47 commit 5ee4311

File tree

8 files changed

+2
-2
lines changed

8 files changed

+2
-2
lines changed

buildSrc/src/main/kotlin/uns/gen/GenerateCode.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ abstract class GenerateCode : DefaultTask() {
2626
abstract val files: FileSystemOperations
2727

2828
@get:OutputDirectory
29-
val targetDir: Directory = layout.projectDirectory.dir("src/commonMainGen/kotlin")
29+
val targetDir: Directory = layout.projectDirectory.dir("src/commonMain/kotlinGen")
3030

3131
@TaskAction
3232
fun generate() {
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

src/commonMainGen/kotlin/uns/arrays.kt renamed to src/commonMain/kotlinGen/uns/arrays.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
@file:OptIn(kotlin.experimental.ExperimentalTypeInference::class, kotlin.ExperimentalUnsignedTypes::class)
1+
@file:OptIn(kotlin.ExperimentalUnsignedTypes::class, kotlin.experimental.ExperimentalTypeInference::class)
22
package uns
33

44
import kotlin.jvm.JvmName

0 commit comments

Comments
 (0)