summaryrefslogtreecommitdiff
path: root/toxcore/BUILD.bazel
diff options
context:
space:
mode:
Diffstat (limited to 'toxcore/BUILD.bazel')
-rw-r--r--toxcore/BUILD.bazel10
1 files changed, 5 insertions, 5 deletions
diff --git a/toxcore/BUILD.bazel b/toxcore/BUILD.bazel
index 1889a702..b22f9b9e 100644
--- a/toxcore/BUILD.bazel
+++ b/toxcore/BUILD.bazel
@@ -123,16 +123,16 @@ cc_library(
123 "TCP_connection.c", 123 "TCP_connection.c",
124 "TCP_server.c", 124 "TCP_server.c",
125 ], 125 ],
126 copts = select({
127 "//tools/config:freebsd": [],
128 "//tools/config:linux": ["-DTCP_SERVER_USE_EPOLL=1"],
129 "//tools/config:osx": [],
130 }),
131 hdrs = [ 126 hdrs = [
132 "TCP_client.h", 127 "TCP_client.h",
133 "TCP_connection.h", 128 "TCP_connection.h",
134 "TCP_server.h", 129 "TCP_server.h",
135 ], 130 ],
131 copts = select({
132 "//tools/config:freebsd": [],
133 "//tools/config:linux": ["-DTCP_SERVER_USE_EPOLL=1"],
134 "//tools/config:osx": [],
135 }),
136 deps = [ 136 deps = [
137 ":crypto_core", 137 ":crypto_core",
138 ":list", 138 ":list",