diff options
| author | Tim Foley <tfoleyNV@users.noreply.github.com> | 2017-08-15 12:51:14 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-08-15 12:51:14 -0700 |
| commit | 6de0a485e09c32cbd0bfead0fbdc5bb6f9aa7040 (patch) | |
| tree | b3f2bd89ffb324bbdc84e542ef42f8e9b3731c31 /source/slang/slang.vcxproj | |
| parent | e6abc6821a1bf13a9826e7db74362ce34ccaca2a (diff) | |
| parent | 831896f844453ba09c9e6cbfe7d29f6d44282632 (diff) | |
Merge pull request #165 from tfoleyNV/ir
Starting to add intermediate representation (IR)
Diffstat (limited to 'source/slang/slang.vcxproj')
| -rw-r--r-- | source/slang/slang.vcxproj | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/source/slang/slang.vcxproj b/source/slang/slang.vcxproj index a212d96ec..94a6004e0 100644 --- a/source/slang/slang.vcxproj +++ b/source/slang/slang.vcxproj @@ -172,8 +172,10 @@ <ClInclude Include="emit.h" /> <ClInclude Include="expr-defs.h" /> <ClInclude Include="intrinsic-defs.h" /> + <ClInclude Include="ir.h" /> <ClInclude Include="lexer.h" /> <ClInclude Include="lookup.h" /> + <ClInclude Include="lower-to-ir.h" /> <ClInclude Include="modifier-defs.h" /> <ClInclude Include="name.h" /> <ClInclude Include="object-meta-begin.h" /> @@ -203,8 +205,10 @@ <ClCompile Include="compiler.cpp" /> <ClCompile Include="diagnostics.cpp" /> <ClCompile Include="emit.cpp" /> + <ClCompile Include="ir.cpp" /> <ClCompile Include="lexer.cpp" /> <ClCompile Include="lookup.cpp" /> + <ClCompile Include="lower-to-ir.cpp" /> <ClCompile Include="lower.cpp" /> <ClCompile Include="name.cpp" /> <ClCompile Include="options.cpp" /> |
