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

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 = [],
    linkopts = ["-lm"],
)