Karlo Lozovina
02/01/2022, 5:03 PMtasks {
compileKotlin {
kotlinOptions { ... }
}
compileTestKotlin {
kotlinOptions {... }
}
}
How would I specify options for some other buildSrc, let's call it "someOtherSrc"?Big Chungus
02/01/2022, 5:06 PMBig Chungus
02/01/2022, 5:08 PMtasks.named<KotlinCompile>("compileMyCustomSourceSetKotlin") { ... }
Karlo Lozovina
02/01/2022, 5:18 PMBig Chungus
02/01/2022, 5:19 PMBig Chungus
02/01/2022, 5:20 PMKarlo Lozovina
02/01/2022, 5:22 PMKarlo Lozovina
02/01/2022, 5:31 PM