10

我刚刚将 Visual Studio 2012 与 Visual Studio 2010 一起安装。问题是我无法将简单项目从 2010 转换为 2012 - 它们无法链接到 kernel32.lib 等文件或包含 windows.h 等文件。我的系统还安装了 Windows SDK 7.1。

我曾尝试为我的 x86 和 x64 用户平台使用 Property Manager(因为我在那里添加了适当的 $(DXSDK_DIR) 引用),结果却是混合的结果 - 有时它只是工作,有时它编译但不链接,其他时候它只是停在 windows.h

例如,目前我正在

1>LINK : fatal error LNK1104: cannot open file 'kernel32.lib'

或者

1>Source.cpp(2): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory

(取决于是否包含“windows.h”)仅在 x64 中具有简单的“hello world”类型程序。

我现在可以在项目属性中Active(Debug) / Active(x64) -> VC++ Directories -> Include Directories看到$(VCInstallDir)include;$(VCInstallDir)atlmfc\include;$(WindowsSDK_IncludePath);$(DXSDK_DIR)Include. 如果我展开该输入框并单击编辑,我会看到:

$(VCInstallDir) = C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\
$(WindowsSDK_IncludePath) = c:\Program Files (x86)\Windows Kits\8.0\Include\um;c:\Program Files (x86)\Windows Kits\8.0\Include\shared;c:\Program Files (x86)\Windows Kits\8.0\Include\WinRT

虽然我的平台工具集 v110 windows.h 位于c:\Program Files (x86)\Windows Kits\8.0\Include\um\Windows.h(所以应该没有问题)。如果我选择 Windows SDK 7.1 作为平台工具集,这些东西就可以工作。

除了格式化和重新安装 Windows 之外的任何解决方案?

LE 如果我用系统内的绝对路径替换 $(variable) 目录,一切正常。我不明白我为什么要这样做,因为我也在与其他人分享这个项目。

4

2 回答 2

9

我知道上面几乎有答案。但...

问题似乎是在安装 VS2012 和 VS2010 时,VS2012 的配置无法正常工作。

修复方法是编辑 %home%\AppData\Local\Microsoft\MSBuild\v4.0 中的 props 文件。

这些是对我有用的文件,使用 SDK v8.1。

第一个用于 32 位构建的 Microsoft.Cpp.Win32.user.props:

<?xml version="1.0" encoding="utf-8"?> 
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <PropertyGroup>
    <IncludePath>C:\Program Files (x86)\Windows Kits\8.1\include\um;C:\Program Files (x86)\Windows Kits\8.1\include\shared;C:\Program Files (x86)\Windows Kits\8.1\include\winrt;$(IncludePath)</IncludePath>
    <LibraryPath>C:\Program Files (x86)\Windows Kits\8.1\Lib\winv6.3\um\x86;$(LibraryPath)</LibraryPath>
    <ExecutablePath>C:\Program Files (x86)\Windows Kits\8.1\bin\x86;$(ExecutablePath)</ExecutablePath>
  </PropertyGroup>
</Project>

现在 Microsoft.Cpp.x64.user.props 用于 64 位构建:

<?xml version="1.0" encoding="utf-8"?> 
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <PropertyGroup>
    <IncludePath>C:\Program Files (x86)\Windows Kits\8.1\include\um;C:\Program Files (x86)\Windows Kits\8.1\include\shared;C:\Program Files (x86)\Windows Kits\8.1\include\winrt;$(IncludePath)</IncludePath>
    <LibraryPath>C:\Program Files (x86)\Windows Kits\8.1\Lib\winv6.3\um\x64;$(LibraryPath)</LibraryPath>
    <ExecutablePath>C:\Program Files (x86)\Windows Kits\8.1\bin\x64;$(ExecutablePath)</ExecutablePath>
  </PropertyGroup>
</Project>

我希望这可以帮助其他人解决这个问题,我还没有在其他任何地方找到解决方案。

于 2013-12-12T20:00:32.770 回答
5

我有一个类似的问题。
在我的情况下,这是因为在项目设置中没有继承正确的路径。

检查路径是否继承于:Project -> Properties -> VC++ Directories
Under Include and Library Directories转到Edit

确保Inherit from parent or project defaults已选中。

VS2012 默认属性和宏设置正确。(虽然我遇到了常见的安装问题,我不得不替换所有的 VC 目录,因为它甚至没有安装 C++ 核心库)

于 2014-03-09T12:43:28.053 回答