From a44091c2ef388755ea3f3587a936d32563d9a55c Mon Sep 17 00:00:00 2001 From: Jens Klingenberg Date: Wed, 27 Apr 2022 13:14:44 +0200 Subject: [PATCH 1/2] Update Readme.md --- Readme.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Readme.md b/Readme.md index 56fa64f..9cd7b42 100644 --- a/Readme.md +++ b/Readme.md @@ -42,6 +42,8 @@ The plugin is only active when the build cache is changed. This is why you need ## Useful resources +[The Road to the New Kotlin Compiler](https://www.youtube.com/watch?v=iTdJJq_LyoY) + [https://github.com/bnorm/kotlin-ir-plugin-template](https://github.com/bnorm/kotlin-ir-plugin-template) [Writing Your Second Kotlin Compiler Plugin, Part 1 — Project Setup](https://blog.bnorm.dev/writing-your-second-compiler-plugin-part-1) From 0d646c1aa56f0e8db7a1638637acb5aba0db23ab Mon Sep 17 00:00:00 2001 From: Jens Klingenberg Date: Fri, 29 Apr 2022 12:42:10 +0200 Subject: [PATCH 2/2] Update Readme.md --- Readme.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Readme.md b/Readme.md index 9cd7b42..9d5983e 100644 --- a/Readme.md +++ b/Readme.md @@ -38,9 +38,10 @@ The plugin is only active when the build cache is changed. This is why you need #### buildSrc/compiler-plugin * kotlin-compiler-native-plugin - This module contains the Kotlin Compiler Plugin for native targets * kotlin-compiler-plugin - This module contains the Kotlin Compiler Plugin for JVM/JS targets - * gradle-plugin - This module contains the gradle plugin which trigger the two compiler plugins - - + +#### buildSrc/gradle-plugin +* gradle-plugin - This module contains the gradle plugin which trigger the two compiler plugins +* ## Useful resources [The Road to the New Kotlin Compiler](https://www.youtube.com/watch?v=iTdJJq_LyoY)