forked from oneapi-src/oneDAL
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BUILD
32 lines (31 loc) · 919 Bytes
/
BUILD
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
26
27
28
29
30
31
32
load("@onedal//dev/bazel:release.bzl",
"release",
"release_include",
)
release(
name = "release",
include = [
release_include(
hdrs = [ "@onedal//cpp/daal:public_includes" ],
skip_prefix = "cpp/daal/include",
),
release_include(
hdrs = [ "@onedal//cpp/daal:kernel_defines" ],
prefix = "services/internal",
),
release_include(
hdrs = [ "@onedal//cpp/oneapi/dal:public_includes" ],
skip_prefix = "cpp",
),
],
lib = [
"@onedal//cpp/daal:core_static",
"@onedal//cpp/daal:thread_static",
"@onedal//cpp/daal:sequential_static",
"@onedal//cpp/daal:core_dynamic",
"@onedal//cpp/daal:thread_dynamic",
"@onedal//cpp/daal:sequential_dynamic",
"@onedal//cpp/oneapi/dal:static",
"@onedal//cpp/oneapi/dal:dynamic",
],
)