Files
pork/settings.gradle.kts

23 lines
284 B
Plaintext
Raw Permalink Normal View History

2023-08-19 15:29:07 -07:00
rootProject.name = "pork"
2023-09-04 21:50:27 -07:00
includeBuild("buildext")
include(
2023-09-04 01:56:24 -07:00
":common",
":tokenizer",
":ast",
2023-11-22 07:23:33 -08:00
":bir",
2023-11-14 23:44:10 -08:00
":bytecode",
2023-09-04 01:56:24 -07:00
":parser",
":frontend",
2023-11-14 23:44:10 -08:00
":compiler",
":execution",
":vm",
2023-09-04 01:56:24 -07:00
":evaluator",
":stdlib",
":ffi",
2023-09-10 01:27:53 -04:00
":tool",
2023-09-11 02:34:28 -04:00
":minimal",
":support:pork-idea",
)