From 20e7cdaa31b2d675e5f7e19aeb1684cf77f34f08 Mon Sep 17 00:00:00 2001 From: icex2 Date: Thu, 15 Aug 2024 13:24:43 +0200 Subject: [PATCH] fix: Setup config API on minimial boot env Summary: Test Plan: --- src/main/core/boot.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/main/core/boot.c b/src/main/core/boot.c index 2490cac..ee87f17 100644 --- a/src/main/core/boot.c +++ b/src/main/core/boot.c @@ -4,6 +4,7 @@ #include +#include "core/config-property-node.h" #include "core/property-mxml.h" #include "core/property-node-mxml.h" #include "core/thread-crt.h" @@ -90,6 +91,8 @@ void core_boot(const char *name) core_property_mxml_core_api_set(); core_property_node_mxml_core_api_set(); + + core_config_property_node_core_api_set(); } void core_boot_dll(const char *name) @@ -102,4 +105,6 @@ void core_boot_dll(const char *name) core_property_mxml_core_api_set(); core_property_node_mxml_core_api_set(); + + core_config_property_node_core_api_set(); } \ No newline at end of file