Skip to content

Commit

Permalink
chore: sync with ecsact_common (#257)
Browse files Browse the repository at this point in the history
Co-authored-by: seaubot <seaubot@users.noreply.github.com>
Co-authored-by: Ezekiel Warren <ezekiel@seaube.com>
  • Loading branch information
3 people authored Aug 15, 2024
1 parent 96967b9 commit 61846c4
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .bazelversion
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.2.0
7.3.0
9 changes: 9 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,12 @@ root = true
[*]
end_of_line = lf
insert_final_newline = true

[*.{cc,hh,cpp,hpp}]
# matching .clang-format IndentWidth
indent_size = 2

[*.{bzl,bazel}]
# matches output of buildifier
indent_size = 4
indent_style = space
5 changes: 3 additions & 2 deletions dylib/index.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ def cc_ecsact_dylib(name = None, srcs = [], ecsact_modules = [], deps = [], defi
name = name,
deps = deps + ["@ecsact_runtime//:dylib", "@ecsact_runtime//dylib:util"] + ["@ecsact_runtime//:{}".format(m) for m in ecsact_modules],
srcs = srcs + ["@ecsact_runtime//dylib:dylib.cc"],
defines = defines +
["ECSACT_{}_API_LOAD_AT_RUNTIME".format(m.upper()) for m in ecsact_modules],
defines = #
defines +
["ECSACT_{}_API_LOAD_AT_RUNTIME".format(m.upper()) for m in ecsact_modules],
**kwargs
)

0 comments on commit 61846c4

Please sign in to comment.