How to use makefiles in Visual Studio?

前端 未结 8 2364
隐瞒了意图╮
隐瞒了意图╮ 2020-12-07 22:35

I heard a lot about makefiles and how they simplify the compilation process. I\'m using VS2008. Can somebody please suggest some online references or books where I can fin

相关标签:
8条回答
  • 2020-12-07 23:13

    To answer the specific questions...

    I'm using VS2008. Can somebody please suggest some online references or books where I can find out more about how to deal with them?

    This link will give you a good introduction into Makefiles by mapping it with Visual Studio.

    Introduction to Makefiles for Visual Studio developers

    I heard a lot about makefiles and how they simplify the compilation process.

    Makefiles are powerful and flexible but may not be the best solution to simplify the process. Consider CMake which abstracts the build process well which is explained in this link.

    CMake for Visual Studio Developers

    0 讨论(0)
  • 2020-12-07 23:22

    The VS equivalent of a makefile is a "Solution" (over-simplified, I know).

    0 讨论(0)
提交回复
热议问题