1. 程式人生 > >Visual Studio 預設路徑的修改

Visual Studio 預設路徑的修改

方法一

1.新建VS2010專案,然後在新建的專案的最下面找到“屬性管理器(property manager)”選項

選擇“microsoft.cpp.win32.user”這一項(debug或release的都行),在出來的屬性框內選擇“VC++目錄(VC++ Directories)”,然後在“包含目錄(include directories)”和“庫目錄(library directories)”中新增你的標頭檔案路徑和庫檔案路徑

方法二

可以直接修改 C:\Users\lenovo\AppData\Local\Microsoft\MSBuild\v4.0 目錄下的檔案:Microsoft.Cpp.Win32.user 或者是Microsoft.Cpp.X64.user
比如 原來內容為:
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<ExecutablePath>$(ExecutablePath)</ExecutablePath>
<IncludePath>$(IncludePath)</IncludePath>
<ReferencePath>$(ReferencePath)</ReferencePath>
<LibraryPath>$(LibraryPath)</LibraryPath>
<SourcePath>$(SourcePath)</SourcePath>
<ExcludePath>$(ExcludePath)</ExcludePath>
</PropertyGroup>
</Project>

我現在需要增加一個目錄:
C:\Boost\include\boost-1_43\;到預設頭Include 路徑,則可以修改檔案如下:


<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<ExecutablePath>$(ExecutablePath)</ExecutablePath>
<IncludePath>C:\Boost\include\boost-1_43\;$(IncludePath)</IncludePath>
<ReferencePath>$(ReferencePath)</ReferencePath>
<LibraryPath>$(LibraryPath)</LibraryPath>
<SourcePath>$(SourcePath)</SourcePath>
<ExcludePath>$(ExcludePath)</ExcludePath>
</PropertyGroup>
</Project>

XP系統的話修改C:\Program Files\Microsoft Visual Studio 10.0\VC\VCWizards中的default工程即可,修改後新建的工程都會有效,但對以前的工程無效,如果想要適用於以前工程,參加別人部落格http://www.cnblogs.com/hwangbae/archive/2012/06/24/2560463.html