blob: f0cd8eb60f8676e677064ccd3c7cc6b12ebbd3f3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
from devtools.yamaker import boost
from devtools.yamaker.project import NixSourceProject
def post_install(self):
self.yamakes["."] = boost.make_library(self)
boost_multi_array = NixSourceProject(
nixattr="boost_multi_array",
arcdir=boost.make_arcdir("multi_array"),
owners=["g:cpp-contrib", "g:taxi-common"],
copy_sources=[
"include/boost/",
],
post_install=post_install,
)
|