From 0834af3a567ae9f8e43420df5093915dd91f17f5 Mon Sep 17 00:00:00 2001 From: Zhelyapov Aleksey Date: Tue, 2 Jul 2024 19:01:48 +0300 Subject: [PATCH] Implement public es2panda_lib generation Issue: https://gitee.com/openharmony/arkcompiler_ets_frontend/issues/IA9RWH internal #16724 Reason: New feature. Description: Auto generation of es2panda_lib - API for plugin development. Tests: ninja es2panda-plugin-test Signed-off-by: Zhelyapov Aleksey Signed-off-by: Ozerov Nikita --- runtime/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/runtime/CMakeLists.txt b/runtime/CMakeLists.txt index 315d8a056..bd6b71669 100644 --- a/runtime/CMakeLists.txt +++ b/runtime/CMakeLists.txt @@ -224,6 +224,7 @@ panda_target_include_directories(arkruntime_obj PUBLIC ${PANDA_ECMASCRIPT_PLUGIN_SOURCE}/runtime ${PANDA_BINARY_ROOT}/compiler/generated ${PANDA_BINARY_ROOT}/plugins/ecmascript/ecmastdlib + ${PANDA_BINARY_ROOT}/tools/es2panda ${ES2PANDA_PATH} ${ECMA_GEN_DIR} ) -- Gitee