Visual Studio C ++-更改每个生成解决方案配置的main.cpp文件

时间:2018-10-12 16:21:47

标签: c++ visual-studio

我需要为每个构建配置更改default(main.cpp)文件。

  

两个cpp文件

  1. main.cpp-在项目创建时创建
  2. second.cpp
  

两个构建配置。

  1. 发布-编译main.cpp
  2. 自定义-还可以编译main.cpp,但我需要编译 second.cpp

我该怎么做? 非常感谢。

1 个答案:

答案 0 :(得分:2)

Richard Critten 提供的答案:

Right click the file > Properties > General > Exclude from build

这会从对话框顶部当前所选配置的构建中排除文件。您可以根据需要创建任意数量的自定义配置。