From b1ce5cc65d4af9fca38e4a885965ae98957f7fad Mon Sep 17 00:00:00 2001 From: Ezekiel Warren Date: Wed, 15 May 2024 09:06:34 -0700 Subject: [PATCH] feat: enable all features with ecsact build (#105) --- runtime/ecsact_rt_entt_dynamic.cc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/runtime/ecsact_rt_entt_dynamic.cc b/runtime/ecsact_rt_entt_dynamic.cc index c05c8b0..8b5b829 100644 --- a/runtime/ecsact_rt_entt_dynamic.cc +++ b/runtime/ecsact_rt_entt_dynamic.cc @@ -28,7 +28,10 @@ ecsact_entity_id ecsact_system_execution_context_entity( return context->entity; } -#ifdef ECSACT_ENTT_RUNTIME_DYNAMIC_SYSTEM_IMPLS +// ecsact build currently doesn't have a way to select certain features of +// runtime. So if we're building with 'ecsact build' include all features until +// configuration is possible. +#if defined(ECSACT_ENTT_RUNTIME_DYNAMIC_SYSTEM_IMPLS) || defined(ECSACT_BUILD) bool ecsact_set_system_execution_impl( ecsact_system_like_id system_id, ecsact_system_execution_impl system_exec_impl