summaryrefslogtreecommitdiff
path: root/source/slang/slang.vcxproj
diff options
context:
space:
mode:
authorYong He <yonghe@outlook.com>2018-02-23 17:22:36 -0500
committerYong He <yonghe@outlook.com>2018-02-23 17:41:46 -0500
commit5ab20eb2d20d491e258047bd94d9d9d0ac5a5dbf (patch)
treebe054fb8e5767daa3cfe42c51e812f21b6fbdd72 /source/slang/slang.vcxproj
parent706675949e70b17860e9ca514c01461fdf9aa95d (diff)
Refactor IR type system, step 0
Pull BaseType, TextureFlavor and SamplerStateFlavor enums and helper functions into a shared file "type-system-shared.h".
Diffstat (limited to 'source/slang/slang.vcxproj')
-rw-r--r--source/slang/slang.vcxproj4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/slang/slang.vcxproj b/source/slang/slang.vcxproj
index 3f2e19166..c36045c24 100644
--- a/source/slang/slang.vcxproj
+++ b/source/slang/slang.vcxproj
@@ -181,6 +181,8 @@
<ClInclude Include="ir-inst-defs.h" />
<ClInclude Include="ir-insts.h" />
<ClInclude Include="ir-ssa.h" />
+ <ClInclude Include="ir-type-defs.h" />
+ <ClInclude Include="ir-types.h" />
<ClInclude Include="ir.h" />
<ClInclude Include="legalize-types.h" />
<ClInclude Include="lexer.h" />
@@ -208,6 +210,7 @@
<ClInclude Include="token.h" />
<ClInclude Include="type-defs.h" />
<ClInclude Include="type-layout.h" />
+ <ClInclude Include="type-system-shared.h" />
<ClInclude Include="val-defs.h" />
<ClInclude Include="visitor.h" />
<ClInclude Include="vm.h" />
@@ -242,6 +245,7 @@
<ClCompile Include="syntax.cpp" />
<ClCompile Include="token.cpp" />
<ClCompile Include="type-layout.cpp" />
+ <ClCompile Include="type-system-shared.cpp" />
<ClCompile Include="vm.cpp" />
</ItemGroup>
<ItemGroup>