blob: 51ba6b4aa0a8c186606bc505dc8b1393d9128ddd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
from devtools.yamaker import boost
from devtools.yamaker.project import NixSourceProject
def post_install(self):
self.yamakes["."] = boost.make_library(self)
boost_algorithm = NixSourceProject(
nixattr="boost_algorithm",
arcdir=boost.make_arcdir("algorithm"),
owners=["g:cpp-contrib"],
copy_sources=[
"include/boost/",
],
disable_includes=[
"slist",
],
post_install=post_install,
)
|