Create linux make/build file

前端 未结 10 1358
余生分开走
余生分开走 2020-12-13 01:01

I am moving a C++ project from Windows to Linux and I now need to create a build/make file. I have never created a build/make file before. I also need to include Boost libra

10条回答
  •  执念已碎
    2020-12-13 01:52

    I would not recommend writing your own Makefiles. Instead, use a build system like CMake or SCons.

    It is worth noting that those tools are cross-platform. So you can use the same build system on Linux and Windows.

提交回复
热议问题