blob: 2b7e956fc56232549b00f5cf69f687a9cd187d61 [file] [log] [blame]
cc_binary(
name = "hellolib.dll",
srcs = [
"hello-library.cpp",
],
linkshared = 1,
)
cc_binary(
name = "hello",
srcs = [
"hello-world.cpp",
],
data = [":hellolib.dll"],
)