From a4e68546237715bb7edfd62190a2926a3ee0bd97 Mon Sep 17 00:00:00 2001 From: kayomn Date: Sun, 19 Feb 2023 16:43:47 +0000 Subject: [PATCH] Add oar library to build script --- build.py | 1 + 1 file changed, 1 insertion(+) diff --git a/build.py b/build.py index 93acd4e..465a3db 100755 --- a/build.py +++ b/build.py @@ -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_package("core") +compile_package("oar") compile_package("app") compile_package("kym") compile_package("runtime")