Ensure newly added C++ implementations are in the VisualStudio project files.

Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
This commit is contained in:
Adrian Conlon 2018-11-25 11:05:41 +00:00
parent 64ed8e01ec
commit 21a16a3c97
2 changed files with 12 additions and 0 deletions

View File

@ -167,6 +167,8 @@
<ClCompile Include="InputOutput.cpp" />
<ClCompile Include="IntelProcessor.cpp" />
<ClCompile Include="LittleEndianProcessor.cpp" />
<ClCompile Include="Memory.cpp" />
<ClCompile Include="Ram.cpp" />
<ClCompile Include="Rom.cpp" />
<ClCompile Include="Processor.cpp" />
<ClCompile Include="stdafx.cpp">
@ -175,6 +177,7 @@
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Create</PrecompiledHeader>
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|x64'">Create</PrecompiledHeader>
</ClCompile>
<ClCompile Include="UnusedMemory.cpp" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">

View File

@ -97,5 +97,14 @@
<ClCompile Include="Rom.cpp">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="UnusedMemory.cpp">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="Ram.cpp">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="Memory.cpp">
<Filter>Source Files</Filter>
</ClCompile>
</ItemGroup>
</Project>