Skip to content

Commit f87c338

Browse files
committed
feat: temporarily bring back rt_reference with override
1 parent d0a386b commit f87c338

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed

.bazelrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ common --registry=https://raw.githubusercontent.com/ecsact-dev/bazel_registry/ma
44
common --registry=https://raw.githubusercontent.com/zaucy/bazel-central-registry/add-curl-config2 # temporary
55
common --registry=https://raw.githubusercontent.com/bazelboost/registry/main
66
common --registry=https://bcr.bazel.build
7+
common --@docopt.cpp//:use_boost_regex
78
build --enable_platform_specific_config
89
build --incompatible_enable_cc_toolchain_resolution
910
build --incompatible_strict_action_env

BUILD.bazel

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@ bzlws_copy(
5959
name = "copy_dist_recipe_bundles",
6060
srcs = [
6161
"@ecsact_rt_entt",
62-
# "@ecsact_rt_reference//async_reference",
63-
# "@ecsact_rt_reference//serialize_reference",
62+
"@ecsact_rt_reference//async_reference",
63+
"@ecsact_rt_reference//serialize_reference",
6464
],
6565
out = "dist/share/ecsact/recipes/{FILENAME}",
6666
force = True,

MODULE.bazel

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,13 @@ bazel_dep(name = "bazel_skylib", version = "1.7.1")
1010
bazel_dep(name = "ecsact_si_wasm", version = "0.1.11")
1111
bazel_dep(name = "rules_ecsact", version = "0.5.8")
1212
bazel_dep(name = "ecsact_rt_entt", version = "0.3.17")
13+
bazel_dep(name = "ecsact_rt_reference", version = "0.2.0")
14+
git_override(
15+
module_name = "ecsact_rt_reference",
16+
commit = "01d3a9026ae7515a9fbfa9076d4d485d8aab0ea0",
17+
remote = "git@github.com:ecsact-dev/ecsact_rt_reference.git",
18+
)
1319

14-
# TODO: add ecsact_runtime 0.8.0 support
15-
# bazel_dep(name = "ecsact_rt_reference", version = "0.1.2")
1620
bazel_dep(name = "ecsact_codegen", version = "0.4.4")
1721
bazel_dep(name = "ecsact_parse", version = "0.5.5")
1822
bazel_dep(name = "ecsact_runtime", version = "0.8.0")
@@ -30,6 +34,9 @@ bazel_dep(name = "ecsact_logo", version = "0.1.11")
3034

3135
bazel_dep(name = "toolchains_llvm", version = "1.2.0", dev_dependency = True)
3236
bazel_dep(name = "hedron_compile_commands", dev_dependency = True)
37+
38+
bazel_dep(name = "docopt.cpp", version = "0.6.2")
39+
3340
git_override(
3441
module_name = "hedron_compile_commands",
3542
commit = "204aa593e002cbd177d30f11f54cff3559110bb9",

0 commit comments

Comments
 (0)