forked from quantumlib/Stim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BUILD
92 lines (83 loc) · 1.58 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
80
81
82
83
84
85
86
87
88
89
90
91
92
package(default_visibility = ["//visibility:public"])
SOURCE_FILES_NO_MAIN = glob(
[
"src/**/*.cc",
"src/**/*.h",
],
exclude = glob([
"src/**/*.test.cc",
"src/**/*.test.h",
"src/**/*.perf.cc",
"src/**/*.perf.h",
"src/**/*.pybind.cc",
"src/**/*.pybind.h",
"src/**/main.cc",
]),
)
TEST_FILES = glob(
[
"src/**/*.test.cc",
"src/**/*.test.h",
],
)
PERF_FILES = glob(
[
"src/**/*.perf.cc",
"src/**/*.perf.h",
],
)
PYBIND_FILES = glob(
[
"src/**/*.pybind.cc",
"src/**/*.pybind.h",
],
)
cc_library(
name = "stim_lib",
srcs = SOURCE_FILES_NO_MAIN,
linkopts = ["-lpthread"],
includes = ["src/include/"],
)
cc_binary(
name = "stim",
srcs = SOURCE_FILES_NO_MAIN + glob(["src/**/main.cc"]),
copts = [
"-march=native",
"-O3",
],
linkopts = ["-lpthread"],
)
cc_binary(
name = "stim_benchmark",
srcs = SOURCE_FILES_NO_MAIN + PERF_FILES,
copts = [
"-march=native",
"-O3",
],
linkopts = ["-lpthread"],
)
cc_test(
name = "stim_test",
srcs = SOURCE_FILES_NO_MAIN + TEST_FILES,
copts = [
"-march=native",
],
linkopts = ["-lpthread"],
deps = [
"@gtest",
"@gtest//:gtest_main",
],
)
cc_binary(
name = "stim_pybind.so",
srcs = SOURCE_FILES_NO_MAIN + PYBIND_FILES,
copts = [
"-O3",
"-fvisibility=hidden",
],
linkopts = ["-lpthread"],
linkshared = 1,
deps = [
"@pybind11",
],
)