File tree Expand file tree Collapse file tree 4 files changed +9
-13
lines changed
suspend-transform-annotation
suspend-transform-runtime
src/commonMain/kotlin/love/forte/plugin/suspendtrans/runtime Expand file tree Collapse file tree 4 files changed +9
-13
lines changed Original file line number Diff line number Diff line change 5656 --info
5757 --warning-mode all
5858 -x test
59- -Pkotlin.daemon.jvmargs="-Xmx8G -XX:MaxPermSize=2g -Dfile.encoding=UTF-8"
60- -Porg.gradle.jvmargs="-Xmx8G -XX:MaxPermSize=2g -Dfile.encoding=UTF-8"
61- -Porg.gradle.workers.max=16
62- -Porg.gradle.parallel=true
59+ --build-cache
60+ -Porg.gradle.jvmargs="-XX:MaxMetaspaceSize=1g -Dfile.encoding=UTF-8"-Porg.gradle.workers.max=16
6361 -Pgradle.publish.key=${{ secrets.GRADLE_PUBLISH_KEY }}
6462 -Pgradle.publish.secret=${{ secrets.GRADLE_PUBLISH_SECRET }}
6563
Original file line number Diff line number Diff line change @@ -33,8 +33,6 @@ kotlin {
3333 }
3434 }
3535
36- configAllNativeTargets()
37-
3836 sourceSets {
3937 val commonMain by getting
4038 val commonTest by getting
Original file line number Diff line number Diff line change @@ -86,13 +86,8 @@ kotlin {
8686 }
8787 }
8888
89- val nativeMain by creating {
90- dependsOn(commonMain)
91- }
92-
93- val nativeTest by creating {
94- dependsOn(commonTest)
95- }
89+ val nativeMain by creating { dependsOn(commonMain) }
90+ val nativeTest by creating { dependsOn(commonTest) }
9691
9792 configure(mainPresets) { dependsOn(nativeMain) }
9893 configure(testPresets) { dependsOn(nativeTest) }
Original file line number Diff line number Diff line change 1+ package love.forte.plugin.suspendtrans.runtime
2+
3+ /*
4+ common中必须存在内容来使得KMP生成平台的 `.klib` 等文件
5+ */
You can’t perform that action at this time.
0 commit comments