Good techniques to use Makefiles in VisualStudio?

后端 未结 11 1021
迷失自我
迷失自我 2021-01-05 23:12

I know the ideal way to build projects is without requiring IDE based project files, since it theoretically causes all sort of trouble with automation and what not. But I\'v

11条回答
  •  遥遥无期
    2021-01-05 23:41

    Why would you want to have project that "compiles on Windows that doesn't depend on the VisualStudio project"? You already have a solution file - you can just use it with console build.

    I'd advise you to use msbuild with conjunction with makefile, nant or even simple batch file if your build system is not as convoluted as ours...

    Is there something I'm missing?

提交回复
热议问题