Updated VS project for States and set header includes for src/ and src/states.
parent
6f30b0a662
commit
ba6d8e21c8
|
@ -40,7 +40,7 @@
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<PropertyGroup Label="UserMacros" />
|
<PropertyGroup Label="UserMacros" />
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||||
<IncludePath>C:\Dev\glew-1.11.0\include;C:\Dev\SDL2-2.0.3\include;$(IncludePath)</IncludePath>
|
<IncludePath>..\..\src\states;..\..\src;C:\Dev\glew-1.11.0\include;C:\Dev\SDL2-2.0.3\include;$(IncludePath)</IncludePath>
|
||||||
<LibraryPath>C:\Dev\glew-1.11.0\lib\Release\Win32;C:\Dev\SDL2-2.0.3\lib\x86;$(LibraryPath)</LibraryPath>
|
<LibraryPath>C:\Dev\glew-1.11.0\lib\Release\Win32;C:\Dev\SDL2-2.0.3\lib\x86;$(LibraryPath)</LibraryPath>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||||
|
@ -93,6 +93,7 @@ xcopy /s /e /d /y "..\..\data" "$(OutDir)data\"</Command>
|
||||||
<ClCompile Include="..\..\src\RenderScene.cpp" />
|
<ClCompile Include="..\..\src\RenderScene.cpp" />
|
||||||
<ClCompile Include="..\..\src\RenderSet.cpp" />
|
<ClCompile Include="..\..\src\RenderSet.cpp" />
|
||||||
<ClCompile Include="..\..\src\RenderView.cpp" />
|
<ClCompile Include="..\..\src\RenderView.cpp" />
|
||||||
|
<ClCompile Include="..\..\src\states\MenuState.cpp" />
|
||||||
<ClCompile Include="..\..\src\Vec.cpp" />
|
<ClCompile Include="..\..\src\Vec.cpp" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
@ -128,6 +129,8 @@ xcopy /s /e /d /y "..\..\data" "$(OutDir)data\"</Command>
|
||||||
<ClInclude Include="..\..\src\RenderScene.hpp" />
|
<ClInclude Include="..\..\src\RenderScene.hpp" />
|
||||||
<ClInclude Include="..\..\src\RenderSet.hpp" />
|
<ClInclude Include="..\..\src\RenderSet.hpp" />
|
||||||
<ClInclude Include="..\..\src\RenderView.hpp" />
|
<ClInclude Include="..\..\src\RenderView.hpp" />
|
||||||
|
<ClInclude Include="..\..\src\State.hpp" />
|
||||||
|
<ClInclude Include="..\..\src\states\MenuState.hpp" />
|
||||||
<ClInclude Include="..\..\src\Vec.hpp" />
|
<ClInclude Include="..\..\src\Vec.hpp" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||||
|
|
|
@ -25,6 +25,9 @@
|
||||||
<Filter Include="Build Copy\data\shaders">
|
<Filter Include="Build Copy\data\shaders">
|
||||||
<UniqueIdentifier>{67fb4fb5-992e-4ddb-9696-d1c4d51d1204}</UniqueIdentifier>
|
<UniqueIdentifier>{67fb4fb5-992e-4ddb-9696-d1c4d51d1204}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
|
<Filter Include="Classes\States">
|
||||||
|
<UniqueIdentifier>{a2690350-d2cc-4a71-94e1-8c091312c812}</UniqueIdentifier>
|
||||||
|
</Filter>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ClCompile Include="..\..\src\main.cpp">
|
<ClCompile Include="..\..\src\main.cpp">
|
||||||
|
@ -81,6 +84,9 @@
|
||||||
<ClCompile Include="..\..\src\AssetCache.cpp">
|
<ClCompile Include="..\..\src\AssetCache.cpp">
|
||||||
<Filter>Classes</Filter>
|
<Filter>Classes</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\src\states\MenuState.cpp">
|
||||||
|
<Filter>Classes\States</Filter>
|
||||||
|
</ClCompile>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<None Include="..\..\..\..\Dev\SDL2-2.0.3\lib\x86\SDL2.dll">
|
<None Include="..\..\..\..\Dev\SDL2-2.0.3\lib\x86\SDL2.dll">
|
||||||
|
@ -160,5 +166,11 @@
|
||||||
<ClInclude Include="..\..\src\HashTable.hpp">
|
<ClInclude Include="..\..\src\HashTable.hpp">
|
||||||
<Filter>Classes</Filter>
|
<Filter>Classes</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\states\MenuState.hpp">
|
||||||
|
<Filter>Classes\States</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\State.hpp">
|
||||||
|
<Filter>Classes</Filter>
|
||||||
|
</ClInclude>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
</Project>
|
</Project>
|
Loading…
Reference in New Issue