-
Notifications
You must be signed in to change notification settings - Fork 0
/
BUILD
79 lines (75 loc) · 1.49 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
COPTS = [
"-Wcast-align",
"-Wcast-qual",
"-Wconversion",
"-Wextra",
"-Wfloat-equal",
"-Woverloaded-virtual",
"-Wparentheses",
"-Wpointer-arith",
"-Wswitch-enum",
"-Wwrite-strings",
]
cc_library(
name = "arowpp",
srcs = [
"src/classifier.cc",
"src/feature.cc",
"src/libarowpp.cc",
"src/model_reader.cc",
"src/model_writer.cc",
"src/options.cc",
"src/result.cc",
"src/tokenizer.cc",
],
hdrs = [
"src/arowpp.h",
"src/common.h",
"src/error_handler.h",
"src/feature.h",
"src/logging.h",
"src/model_reader_interface.h",
"src/model_writer_interface.h",
"src/options.h",
"src/param.h",
"src/random.h",
"src/timer.h",
"src/tokenizer.h",
],
copts = COPTS,
visibility = ["//visibility:public"],
)
cc_binary(
name = "arow_learn",
srcs = [
"src/arow_learn.cc",
],
deps = [
":arowpp",
],
)
cc_binary(
name = "arow_test",
srcs = [
"src/arow_test.cc",
],
deps = [
":arowpp",
],
)
cc_test(
name = "arow_unittest",
srcs = [
"src/classifier_test.cc",
"src/feature_test.cc",
"src/model_reader_test.cc",
"src/result_test.cc",
"src/tokenizer_test.cc",
],
copts = ["-Iexternal/gtest/include"],
linkopts = ["-lpthread"],
deps = [
":arowpp",
"@gtest//:main",
]
)