Skip to content

Commit 82aa0f1

Browse files
authored
fix: build recipe aware of async methods (#73)
1 parent 01093de commit 82aa0f1

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

MODULE.bazel.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ecsact/cli/commands/build/BUILD.bazel

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ cc_library(
6969
hdrs = ["get_modules.hh"],
7070
copts = copts,
7171
deps = [
72+
"@ecsact_runtime//:async",
7273
"@ecsact_runtime//:core",
7374
"@ecsact_runtime//:dynamic",
7475
"@ecsact_runtime//:meta",

ecsact/cli/commands/build/get_modules.cc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#include "ecsact/cli/commands/build/get_modules.hh"
22

3+
#include "ecsact/runtime/async.h"
34
#include "ecsact/runtime/core.h"
45
#include "ecsact/runtime/dynamic.h"
56
#include "ecsact/runtime/meta.h"
@@ -18,6 +19,7 @@ auto ecsact::cli::detail::get_ecsact_modules( //
1819
static_assert(true, "")
1920

2021
for(auto method : methods) {
22+
FOR_EACH_ECSACT_ASYNC_API_FN(CHECK_MODULE, "async");
2123
FOR_EACH_ECSACT_CORE_API_FN(CHECK_MODULE, "core");
2224
FOR_EACH_ECSACT_DYNAMIC_API_FN(CHECK_MODULE, "dynamic");
2325
FOR_EACH_ECSACT_META_API_FN(CHECK_MODULE, "meta");

0 commit comments

Comments
 (0)