Including Relevant Boost Libraries with C++ Source (Using Visual Studio)

前端 未结 6 900
感动是毒
感动是毒 2021-01-05 15:09

I have a project I\'m working on (for school) that I\'m digging into the Boost libraries for the solutions. I need some way to distribute the required Boost source code with

6条回答
  •  陌清茗
    陌清茗 (楼主)
    2021-01-05 15:58

    Try calling bcp with this command:

    "c:\Program Files\boost\boost_1_34_1\bin\bcp.exe" --boost="c:\Program Files\boost\boost_1_34_1" regex regex
    

    --boost tells bcp where boost is installed, the first regex is the name of the modules, the second is the destination directory.

    Oh, and if you haven't already noticed, there are Visual C++ makefiles in libs\regex\build\.

提交回复
热议问题