Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix for VC100 #851

Merged
merged 2 commits into from Mar 18, 2012
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions win/VC100/game.vcxproj
Expand Up @@ -504,8 +504,6 @@
<ClCompile Include="..\..\src\game\SpellMgr.cpp" />
<ClCompile Include="..\..\src\game\StatSystem.cpp" />
<ClCompile Include="..\..\src\game\StateMgr.cpp" />
<ClCompile Include="..\..\src\game\StateMgr.h" />
<ClCompile Include="..\..\src\game\StateMgrImpl.h" />
<ClCompile Include="..\..\src\game\TargetedMovementGenerator.cpp" />
<ClCompile Include="..\..\src\game\TaxiHandler.cpp" />
<ClCompile Include="..\..\src\game\TemporarySummon.cpp" />
Expand Down Expand Up @@ -691,6 +689,8 @@
<ClInclude Include="..\..\src\game\SpellAuras.h" />
<ClInclude Include="..\..\src\game\SpellMgr.h" />
<ClInclude Include="..\..\src\game\SQLStorages.h" />
<ClInclude Include="..\..\src\game\StateMgr.h" />
<ClInclude Include="..\..\src\game\StateMgrImpl.h" />
<ClInclude Include="..\..\src\game\TargetedMovementGenerator.h" />
<ClInclude Include="..\..\src\game\TemporarySummon.h" />
<ClInclude Include="..\..\src\game\ThreatManager.h" />
Expand Down Expand Up @@ -751,4 +751,4 @@
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
</Project>
</Project>
11 changes: 10 additions & 1 deletion win/VC100/game.vcxproj.filters
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
<Filter Include="World/Handlers">
Expand Down Expand Up @@ -252,6 +252,9 @@
<ClCompile Include="..\..\src\game\SpellHandler.cpp">
<Filter>World/Handlers</Filter>
</ClCompile>
<ClCompile Include="..\..\src\game\StateMgr.cpp">
<Filter>World/Handlers</Filter>
</ClCompile>
<ClCompile Include="..\..\src\game\TaxiHandler.cpp">
<Filter>World/Handlers</Filter>
</ClCompile>
Expand Down Expand Up @@ -768,6 +771,12 @@
<ClInclude Include="..\..\src\game\SpellAuras.h">
<Filter>World/Handlers</Filter>
</ClInclude>
<ClInclude Include="..\..\src\game\StateMgr.h">
<Filter>World/Handlers</Filter>
</ClInclude>
<ClInclude Include="..\..\src\game\StateMgrImpl.h">
<Filter>World/Handlers</Filter>
</ClInclude>
<ClInclude Include="..\..\src\game\Transports.h">
<Filter>World/Handlers</Filter>
</ClInclude>
Expand Down