Skip to content

Commit 49ff8b1

Browse files
committed
implementation complete. tests next
1 parent 06a61d8 commit 49ff8b1

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

BUILD

+14-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,15 @@
1-
load("@rules_cc//cc:defs.bzl", "cc_binary")
1+
load("@rules_cc//cc:defs.bzl", "cc_binary", "cc_library")
2+
3+
cc_library(
4+
name = "mpcinterface",
5+
srcs = ["src/mpcinterface.cpp"],
6+
hdrs = ["include/mpcinterface.h"],
7+
includes = ["include"],
8+
visibility = ["//visibility:public"],
9+
deps = [
10+
"@eigen//:eigen",
11+
],
12+
)
213

314
cc_binary(
415
name = "main",
@@ -8,4 +19,5 @@ cc_binary(
819
],
920
copts = [
1021
"-Iexternal/eigen"],
11-
)
22+
)
23+

0 commit comments

Comments
 (0)