aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/windows/dll/BUILD
blob: 17ed3c1d234f85f6e5af7c5b7afb47c17174a31f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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"],
)