Skip to content

Commit b1ce5cc

Browse files
authored
feat: enable all features with ecsact build (#105)
1 parent d80d08a commit b1ce5cc

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

runtime/ecsact_rt_entt_dynamic.cc

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,10 @@ ecsact_entity_id ecsact_system_execution_context_entity(
2828
return context->entity;
2929
}
3030

31-
#ifdef ECSACT_ENTT_RUNTIME_DYNAMIC_SYSTEM_IMPLS
31+
// ecsact build currently doesn't have a way to select certain features of
32+
// runtime. So if we're building with 'ecsact build' include all features until
33+
// configuration is possible.
34+
#if defined(ECSACT_ENTT_RUNTIME_DYNAMIC_SYSTEM_IMPLS) || defined(ECSACT_BUILD)
3235
bool ecsact_set_system_execution_impl(
3336
ecsact_system_like_id system_id,
3437
ecsact_system_execution_impl system_exec_impl

0 commit comments

Comments
 (0)