forked from monero-project/monero
-
Notifications
You must be signed in to change notification settings - Fork 2
/
BUILD
63 lines (59 loc) · 1.42 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
package(default_visibility = ["//visibility:public"])
platform(
name = "x64_windows-clang-cl",
constraint_values = [
"@platforms//cpu:x86_64",
"@platforms//os:windows",
"@bazel_tools//tools/cpp:clang-cl",
],
)
cc_binary(
name = "test",
srcs = ["test.cc"],
deps = [
"@boost",
"@db_drivers",
"@easy_logging",
"@expat",
"@ldns",
"@libhidapi",
"@liblzma",
"@libnorm",
"@libreadline",
"@libsodium",
"@libudev",
"@libunbound",
"@libunwind",
"@libusb",
"@libzmq",
"@lrelease",
"@miniupnp//:minissdpd",
"@miniupnp//:miniupnpc",
"@miniupnp//:miniupnpc-async",
"@miniupnp//:miniupnpc-libevent",
"@miniupnp//:miniupnpc-libuv",
"@miniupnp//:miniupnpd",
"@openpgm",
"@openssl//:libcrypto",
"@openssl//:libssl",
"@qrcodegen",
"@randomx",
"@rapidjson",
"@supercop",
"@trezor_common//protob:messages_cc_proto",
"@trezor_common//protob:messages_common_cc_proto",
"@trezor_common//protob:messages_management_cc_proto",
"@trezor_common//protob:messages_monero_cc_proto",
"@unbound",
],
)
py_binary(
name = "configure",
srcs = ["configure.py"],
deps = [],
)
py_binary(
name = "configure_win",
srcs = ["configure_win.py"],
deps = [],
)