blob: 17ed3c1d234f85f6e5af7c5b7afb47c17174a31f [file] [log] [blame]
filegroup(
name = "srcs",
srcs = glob(["**"]),
visibility = ["//examples:__pkg__"],
)
cc_binary(
name = "hellolib.dll",
srcs = [
"hello-library.cpp",
],
linkshared = 1,
)
cc_binary(
name = "hello",
srcs = [
"hello-world.cpp",
],
data = [":hellolib.dll"],
)