aboutsummaryrefslogtreecommitdiff
path: root/BUILD
blob: 7d781eeb152b54a26b302a759561b6d09522b9cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25

package(default_visibility = ["//visibility:public"])
licenses(["notice"])

filegroup(
    name = "fruit_headers",
    srcs = glob([
        "include/**/*.h",         
        "configuration/bazel/**/*.h",
    ]),
)    

cc_library(
    name = "fruit",
    srcs = glob([
        "src/*.cpp",
        "include/fruit/impl/**/*.h",
        "configuration/bazel/**/*.h"]),
    hdrs = glob(["include/fruit/*.h"]),
    includes = ["include", "configuration/bazel"],
    deps = [
        "@boost//:unordered",
    ],
    linkopts = ["-lm"],
)