VS2015 各种目录详解

一、VS新建工程后默认值如下:

  1. 输出目录:
    ( S o l u t i o n D i r ) (SolutionDir) (SolutionDir)(Platform)$(Configuration)
  2. 中间目录:
    ( P l a t f o r m ) (Platform) (Platform)(Configuration)\
  3. 目标文件名:
    $(ProjectName) 即项目名称hps_mfc_sandbox_v140

其中
$(SolutionDir)为解决方案目录(绝对路径)
$(Platform)平台x64
$(Configuration)为配置版本Debug

二、我的VS设置

  1. 输出目录:
    $(SolutionDir)bin$(Platform)$(Configuration)
    (路径为:I:\workspace\mfc_sandbox\bin\x64\Debug\)
  2. 中间目录:
    $(SolutionDir)bintemp$(Platform)$(ProjectName)$(Configuration)
    (路径为:I:\workspace\mfc_sandbox\bintemp\x64\Debug)
    VS2015 各种目录详解
上一篇:Mac 如何安装 SDK Platform Tools


下一篇:查询python是32位还是64位的正确方式