diff --git a/multisrc/build.gradle.kts b/multisrc/build.gradle.kts index 47a76f489..d2626806e 100644 --- a/multisrc/build.gradle.kts +++ b/multisrc/build.gradle.kts @@ -32,6 +32,13 @@ configurations { dependencies { compileOnly(libs.bundles.common) + + // Implements all :lib libraries on the multisrc generator + // Note that this does not mean that generated sources are going to + // implement them too; this is just to be able to compile and generate sources. + rootProject.subprojects + .filter { it.path.startsWith(":lib") } + .forEach(::implementation) } tasks {