How to setup visual studio for cross platform c++ development

前端 未结 4 482
星月不相逢
星月不相逢 2020-12-25 13:42

After some time mainly .net development, i need to work in c++ in a cross platform manner.

I don\'t want to give up visual studio, so my hope was that it is possible

4条回答
  •  情歌与酒
    2020-12-25 14:23

    I'm especially curious on how you make sure that things like the project file stay in sync with the make files which are probably needed on the *nix platforms.

    Since MS decided to remove support for makefiles from VS, you don't. You use something else that can generate VS project files and make sure you keep THAT set up correctly. Something like CMake.

提交回复
热议问题