pork/compiler/build.gradle.kts

13 lines
225 B
Plaintext
Raw Normal View History

2023-11-15 07:44:10 +00:00
plugins {
id("gay.pizza.pork.module")
}
dependencies {
api(project(":ast"))
2023-11-23 05:40:09 +00:00
api(project(":bir"))
2023-11-15 07:44:10 +00:00
api(project(":bytecode"))
api(project(":parser"))
api(project(":frontend"))
implementation(project(":common"))
}