Skip to content

Commit 81d9aa7

Browse files
authored
Fix misused glob in BUILD.qt_win.bazel (#1151)
This follows up to my previous commit [1], which aimed to enable us to use Bazel to build executables with Qt6 dependencies. Thanks to '--incompatible_disallow_empty_glob', which is going to be enabled by default from Bazel 8.0, it is clear that an empty list was set to 'hdrs' despite my intention. Let's fix it (#1150). There must be no change in the final artifacts. [1]: 019911b PiperOrigin-RevId: 709014821
1 parent 99e45d3 commit 81d9aa7

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/bazel/BUILD.qt_win.bazel

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,9 @@ cc_library(
2525
],
2626
}),
2727
hdrs = glob([
28-
"include",
28+
"include/QtCore/*",
29+
"include/QtGui/*",
30+
"include/QtWidgets/*",
2931
]),
3032
includes = [
3133
"include",

0 commit comments

Comments
 (0)