mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-02-27 15:26:58 +00:00
Fix classpath for KotlinCompile
This commit is contained in:
@@ -96,10 +96,12 @@ allprojects {
|
||||
}
|
||||
gradle.projectsEvaluated {
|
||||
tasks.withType(JavaCompile).configureEach {
|
||||
// Make sure the frameworkJar is always first in the classpath.
|
||||
classpath = files(frameworkJar, classpath)
|
||||
}
|
||||
tasks.withType(KotlinCompile).configureEach {
|
||||
libraries.from(files(frameworkJar))
|
||||
// Make sure the frameworkJar is always first in the classpath.
|
||||
libraries.setFrom files(frameworkJar, libraries)
|
||||
}
|
||||
}
|
||||
dependencies {
|
||||
|
||||
Reference in New Issue
Block a user