We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb1d4dc commit 539c25eCopy full SHA for 539c25e
imgui-vk/build.gradle
@@ -66,5 +66,18 @@ jar {
66
67
shadowJar.archiveClassifier = 'all'
68
69
-compileKotlin.kotlinOptions.jvmTarget = "11"
70
-compileTestKotlin.kotlinOptions.jvmTarget = "11"
+compileKotlin {
+ kotlinOptions.jvmTarget = "11"
71
+ destinationDir = compileJava.destinationDir
72
+}
73
+compileTestKotlin {
74
75
+ destinationDir = compileTestJava.destinationDir
76
77
+
78
+compileJava {
79
+ doFirst {
80
+ options.compilerArgs = ['--module-path', classpath.asPath,]
81
+ classpath = files()
82
+ }
83
0 commit comments