选择菜单 Project → Options 打开项目的配置,这里有很多重要的参数需要注意
首先看 Target选项:大部分左面选择的配置当中,右面都需要选择Target选项,如上图所示,Target下拉表包含很多选项:
其中 configuration 是指项目以 Debug 或 Release 方式编译,platform 是指操作系统类型,32 位 Windows 或 64 位 Windows。
All configuration | 所有配置,所有操作系统 |
32-bit Windows platform |
所有配置,32位 Windows 操作系统 |
64-bit Windows platform |
所有配置,64位 Windows 操作系统 |
Debug configuration | Debug 配置,所有操作系统 |
32-bit Windows platform |
Debug 配置,32位 Windows 操作系统 |
64-bit Windows platform |
Debug 配置,64位 Windows 操作系统 |
Release configuration | Release 配置,所有操作系统 |
32-bit Windows platform |
Release 配置,32位 Windows 操作系统 |
64-bit Windows platform |
Release 配置,64位 Windows 操作系统 |
公共的配置,尽量在表格里面前面的配置里面修改,后面的配置会继承前面的配置,这样能做到统一修改配置,不会改的很乱,有区别的配置,再在后面具体的选项里面修改。
|