Expose coroutines dependencies to all extensions by default (#13757)

This commit is contained in:
arkon
2022-10-08 09:44:48 -04:00
committed by GitHub
parent 7579ca391f
commit 40b6e31505
4 changed files with 10 additions and 26 deletions

View File

@@ -1,13 +1,9 @@
include(":core")
include(":lib-dataimage")
project(":lib-dataimage").projectDir = File("lib/dataimage")
include(":lib-unpacker")
project(":lib-unpacker").projectDir = File("lib/unpacker")
include(":lib-cryptoaes")
project(":lib-cryptoaes").projectDir = File("lib/cryptoaes")
listOf("dataimage", "unpacker", "cryptoaes").forEach {
include(":lib-$it")
project(":lib-$it").projectDir = File("lib/$it")
}
if (System.getenv("CI") == null || System.getenv("CI_MODULE_GEN") == "true") {
// Local development (full project build)