在windows中用makefile构建一个c ++程序

时间:2016-01-06 22:07:10

标签: c++ windows shell boost cygwin

我用visual studio写了一个小c ++程序。 我必须使用shell脚本构建该程序。为此,我安装了cygwin。如何构建一个程序,为boost-library使用环境变量?

1 个答案:

答案 0 :(得分:0)

  1. http://www.boost.org/users/download/
  2. 安装提升
  3. 我不确定你用来编译C ++的系统,但确实如此,你需要为你的程序创建一个 makefile
  4. 创建 makefile 后,添加以下标志:

    -lboost_system -lboost_locale

  5. 祝你好运!