How to build a boost dependent project using regular makefiles?

前端 未结 4 1278
温柔的废话
温柔的废话 2021-01-12 05:37

I\'m working on a c++ project, and we recently needed to include a small part of boost in it. The boost part is really minimal (Boost::Python), thus, using bjam to build eve

4条回答
  •  长情又很酷
    2021-01-12 06:14

    You can use Boost's bcp utility to extract only the subset of Boost you need. That will minimize your build time & size.

    That doesn't answer your question, though. You may want to consider building the Boost.Python libraries separately and checking them directly into your source control system. Then nobody would need to build them.

提交回复
热议问题