如何将 Visual Studio 2010 与 Visual C++ 2008 编译器一起使用?

2022-01-20 00:00:00 visual-studio ide c++

我想使用带有 9.0 编译器的 Visual Studio 2010,我该怎么做?

I want to use Visual Studio 2010 with the 9.0 compiler, how can I do this?

我需要这个,所以我可以使用 DarkGDK,但是我不想切换 IDE.

I need this so I can use DarkGDK, however I do not want to switch the IDE.

推荐答案

就在您的项目属性中,平台工具集"默认为v100".

It's right there in your project properties, "Platform Toolset" defaults to "v100".

只需将其更改为v90"即可.

Just change that to "v90" and you are done.

相关文章