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