summaryrefslogtreecommitdiffstats
path: root/contrib/restricted/boost/exception/.yandex_meta/__init__.py
blob: 7ea76381dd1d3259b5fb8f958cfb4a40e6b2128d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from devtools.yamaker import boost
from devtools.yamaker.project import NixSourceProject


def post_install(self):
    self.yamakes["."] = boost.make_library(self, populate_srcs=True)


boost_exception = NixSourceProject(
    nixattr="boost_exception",
    arcdir=boost.make_arcdir("exception"),
    owners=["g:cpp-contrib"],
    copy_sources=[
        "include/boost/",
        "src/",
    ],
    post_install=post_install,
)