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
|
from devtools.yamaker import boost
from devtools.yamaker.project import NixSourceProject
def post_install(self):
self.yamakes["."] = boost.make_library(
self,
PEERDIR=[
"contrib/libs/openssl",
],
)
boost_asio = NixSourceProject(
nixattr="boost_asio",
arcdir=boost.make_arcdir("asio"),
owners=["g:cpp-contrib"],
copy_sources=[
"include/boost/",
],
disable_includes=[
"atomic.h",
"liburing.h",
"experimental/coroutine",
"experimental/source_location",
"experimental/string_view",
"BOOST_ASIO_CUSTOM_HANDLER_TRACKING",
"wolfssl/",
],
post_install=post_install,
)
|