We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d80d08a commit b1ce5ccCopy full SHA for b1ce5cc
runtime/ecsact_rt_entt_dynamic.cc
@@ -28,7 +28,10 @@ ecsact_entity_id ecsact_system_execution_context_entity(
28
return context->entity;
29
}
30
31
-#ifdef ECSACT_ENTT_RUNTIME_DYNAMIC_SYSTEM_IMPLS
+// 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)
35
bool ecsact_set_system_execution_impl(
36
ecsact_system_like_id system_id,
37
ecsact_system_execution_impl system_exec_impl
0 commit comments