forked from quantumlib/qsim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BUILD
45 lines (40 loc) · 827 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
33
34
35
36
37
38
39
40
41
42
43
44
45
# TODO: remove reliance on getopt (unistd.h) to allow apps to run on Windows.
cc_binary(
name = "qsim_base",
srcs = ["qsim_base.cc"],
deps = [
"//lib:run_qsim_lib",
],
data = ["//circuits:circuit_q24"],
)
cc_binary(
name = "qsim_von_neumann",
srcs = ["qsim_von_neumann.cc"],
deps = [
"//lib:run_qsim_lib",
],
)
cc_binary(
name = "qsim_amplitudes",
srcs = ["qsim_amplitudes.cc"],
deps = [
"//lib:bitstring",
"//lib:run_qsim_lib",
],
)
cc_binary(
name = "qsimh_base",
srcs = ["qsimh_base.cc"],
deps = [
"//lib:bitstring",
"//lib:run_qsimh_lib",
],
)
cc_binary(
name = "qsimh_amplitudes",
srcs = ["qsimh_amplitudes.cc"],
deps = [
"//lib:bitstring",
"//lib:run_qsimh_lib",
],
)