Add oar library to build script

This commit is contained in:
kayomn 2023-02-19 16:43:47 +00:00
parent 9af0e860cb
commit a4e6854623
1 changed files with 1 additions and 0 deletions

View File

@ -29,6 +29,7 @@ def compile_package(root_module_name: str) -> None:
compile_module(os.path.join(root_module_source_path, file_name), f"{root_module_name}.{os.path.splitext(file_name)[0]}") compile_module(os.path.join(root_module_source_path, file_name), f"{root_module_name}.{os.path.splitext(file_name)[0]}")
compile_package("core") compile_package("core")
compile_package("oar")
compile_package("app") compile_package("app")
compile_package("kym") compile_package("kym")
compile_package("runtime") compile_package("runtime")