Where is WindowsSDK_IncludePath defined?

前端 未结 4 914
清歌不尽
清歌不尽 2020-12-16 12:15

The macro $(WindowsSDK_IncludePath) has the values shown in the picture.

I\'d like to know where those values are defined, they must be defined in some files.

<
4条回答
  •  长情又很酷
    2020-12-16 13:12

    I see the data in file sdk.props in folder C:\Program Files (x86)\Windows Kits\8.0\build\CommonConfiguration\Neutral

    
         $([MSBUILD]::GetDirectoryNameOfFileAbove('$(MSBUILDTHISFILEDIRECTORY)', 'sdkmanifest.xml'))
      
    
          $(WindowsSdkDir)Include\um;$(WindowsSdkDir)Include\shared;$(WindowsSdkDir)Include\winrt;
      
    

    I use a Win8 + VS2012, so it should be in folder 8.1 for your VS2013 + 8.1 SDK.

提交回复
热议问题