Skip to content

Commit

Permalink
feat: enable all features with ecsact build (#105)
Browse files Browse the repository at this point in the history
  • Loading branch information
zaucy authored May 15, 2024
1 parent d80d08a commit b1ce5cc
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion runtime/ecsact_rt_entt_dynamic.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit b1ce5cc

Please # to comment.