我刚刚将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作为平台工具集,则可以使用Stuff。
除了格式化和重新安装Windows之外的任何解决方案吗?
L.E。如果我用系统内的绝对路径替换$(变量)目录,一切正常。我不明白为什么我会这样做,因为我也和其他人分享这个项目。
答案 0 :(得分:9)
我知道上面几乎有一个答案。但...
问题似乎是在安装VS2012和VS2010时,VS2012的配置无法正常工作。
修复方法是编辑%home%\ AppData \ Local \ Microsoft \ MSBuild \ v4.0中的道具文件。
这些是使用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>
现在用于64位版本的Microsoft.Cpp.x64.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\x64;$(LibraryPath)</LibraryPath>
<ExecutablePath>C:\Program Files (x86)\Windows Kits\8.1\bin\x64;$(ExecutablePath)</ExecutablePath>
</PropertyGroup>
</Project>
我希望这可以帮助其他人解决这个问题,我还没有在其他任何地方找到解决方案。
答案 1 :(得分:4)
我遇到了类似的问题 在我的情况下,这是因为在项目设置中没有继承正确的路径。
检查路径是否继承在:项目 - &gt;属性 - &gt; VC ++目录
在包含和图书馆目录下,转到修改。
确保已选中Inherit from parent or project defaults
。
正确设置了VS2012默认属性和宏。 (虽然我遇到了常见的安装问题,我不得不替换所有的VC目录,因为它甚至没有安装C ++核心库)