Skip to content

feat: support new assoc api in C++ codegen #196

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Jun 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ module(

bazel_dep(name = "rules_cc", version = "0.0.9")
bazel_dep(name = "bazel_skylib", version = "1.6.1")
bazel_dep(name = "ecsact_runtime", version = "0.6.2")
bazel_dep(name = "ecsact_runtime", version = "0.6.5")
bazel_dep(name = "rules_ecsact", version = "0.5.2")
bazel_dep(name = "ecsact_codegen", version = "0.2.0")

bazel_dep(name = "ecsact_cli", version = "0.3.7", dev_dependency = True)
bazel_dep(name = "ecsact_cli", version = "0.3.10", dev_dependency = True)
bazel_dep(name = "boost.dll", version = "1.83.0.bzl.2", dev_dependency = True)
bazel_dep(name = "boost.process", version = "1.83.0.bzl.2", dev_dependency = True)
bazel_dep(name = "toolchains_llvm", version = "1.0.0", dev_dependency = True)
Expand Down
7 changes: 5 additions & 2 deletions cpp_header_codegen/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
load("//bazel:copts.bzl", "copts")
load("//:codegen_plugin.bzl", "cc_ecsact_codegen_plugin")
load("//bazel:copts.bzl", "copts")

package(default_visibility = ["//visibility:public"])

Expand All @@ -8,7 +8,10 @@ cc_ecsact_codegen_plugin(
srcs = ["cpp_header_codegen.cc"],
copts = copts,
output_extension = "hh",
deps = ["//:support"],
deps = [
"//:cpp_codegen_plugin_util",
"//:support",
],
)

alias(
Expand Down
7 changes: 5 additions & 2 deletions cpp_systems_header_codegen/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
load("//bazel:copts.bzl", "copts")
load("//:codegen_plugin.bzl", "cc_ecsact_codegen_plugin")
load("//bazel:copts.bzl", "copts")

package(default_visibility = ["//visibility:public"])

Expand All @@ -9,7 +9,10 @@ cc_ecsact_codegen_plugin(
copts = copts,
no_validate_test = True, # file name is too long on Windows
output_extension = "systems.hh",
deps = ["//:support"],
deps = [
"//:cpp_codegen_plugin_util",
"//:support",
],
)

alias(
Expand Down
Loading