diff options
author | John Hodge <tpg@mutabah.net> | 2017-08-19 17:34:38 +0800 |
---|---|---|
committer | John Hodge <tpg@mutabah.net> | 2017-08-19 17:39:08 +0800 |
commit | 42f772e01d1cae1fa774bb0b670670dbefa813ea (patch) | |
tree | b9d3654c4fecf1a3d912e4e2add049b897f8a14b | |
parent | 94ba7c6e3e50ca1ab71f7ffe8637cdd1705102d5 (diff) | |
download | mrust-42f772e01d1cae1fa774bb0b670670dbefa813ea.tar.gz |
vsproject - Update for makefile changes
-rw-r--r-- | vsproject/mrustc.vcxproj | 1 | ||||
-rw-r--r-- | vsproject/mrustc.vcxproj.filters | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/vsproject/mrustc.vcxproj b/vsproject/mrustc.vcxproj index c890484e..a547e336 100644 --- a/vsproject/mrustc.vcxproj +++ b/vsproject/mrustc.vcxproj @@ -239,6 +239,7 @@ <ClCompile Include="..\src\resolve\use.cpp" /> <ClCompile Include="..\src\serialise.cpp" /> <ClCompile Include="..\src\span.cpp" /> + <ClCompile Include="..\src\trans\allocator.cpp" /> <ClCompile Include="..\src\trans\codegen.cpp" /> <ClCompile Include="..\src\trans\codegen_c.cpp" /> <ClCompile Include="..\src\trans\codegen_c_structured.cpp" /> diff --git a/vsproject/mrustc.vcxproj.filters b/vsproject/mrustc.vcxproj.filters index 35c2f39d..e5afb22e 100644 --- a/vsproject/mrustc.vcxproj.filters +++ b/vsproject/mrustc.vcxproj.filters @@ -371,6 +371,9 @@ <ClCompile Include="..\src\trans\codegen_c_structured.cpp"> <Filter>Source Files\trans</Filter> </ClCompile> + <ClCompile Include="..\src\trans\allocator.cpp"> + <Filter>Source Files\trans</Filter> + </ClCompile> </ItemGroup> <ItemGroup> <ClInclude Include="..\src\common.hpp"> |