Skip to content

Commit 61846c4

Browse files
seaubotzaucy
andauthored
chore: sync with ecsact_common (#257)
Co-authored-by: seaubot <[email protected]> Co-authored-by: Ezekiel Warren <[email protected]>
1 parent 96967b9 commit 61846c4

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

.bazelversion

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
7.2.0
1+
7.3.0

.editorconfig

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,12 @@ root = true
33
[*]
44
end_of_line = lf
55
insert_final_newline = true
6+
7+
[*.{cc,hh,cpp,hpp}]
8+
# matching .clang-format IndentWidth
9+
indent_size = 2
10+
11+
[*.{bzl,bazel}]
12+
# matches output of buildifier
13+
indent_size = 4
14+
indent_style = space

dylib/index.bzl

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ def cc_ecsact_dylib(name = None, srcs = [], ecsact_modules = [], deps = [], defi
2626
name = name,
2727
deps = deps + ["@ecsact_runtime//:dylib", "@ecsact_runtime//dylib:util"] + ["@ecsact_runtime//:{}".format(m) for m in ecsact_modules],
2828
srcs = srcs + ["@ecsact_runtime//dylib:dylib.cc"],
29-
defines = defines +
30-
["ECSACT_{}_API_LOAD_AT_RUNTIME".format(m.upper()) for m in ecsact_modules],
29+
defines = #
30+
defines +
31+
["ECSACT_{}_API_LOAD_AT_RUNTIME".format(m.upper()) for m in ecsact_modules],
3132
**kwargs
3233
)

0 commit comments

Comments
 (0)