summaryrefslogtreecommitdiffstats
path: root/source/core/core.vcxproj
diff options
context:
space:
mode:
authorjsmall-nvidia <jsmall@nvidia.com>2019-12-10 10:02:19 -0500
committerGitHub <noreply@github.com>2019-12-10 10:02:19 -0500
commit79ec0cfdb5f3461c763e0bf712cf42eb87fccb90 (patch)
treecf0c3c0b6e7f10d3a29930cd3aeef586298d4234 /source/core/core.vcxproj
parent2e52217cb870b4101c1639fed78224f89bf119b3 (diff)
DownstreamCompiler abstraction (#1149)
* CPPCompiler -> DownstreamCompiler * Added DownstreamCompileResult to start abstraction such that we don't need files. * * Split out slang-blob.cpp * Made CompileResult hold a DownstreamCompileResult - for access to binary or ISlangSharedLibrary * Keep temporary files in scope. * Add a hash to the hex dump stream. * Move all file tracking into DownstreamCompiler.
Diffstat (limited to 'source/core/core.vcxproj')
-rw-r--r--source/core/core.vcxproj6
1 files changed, 4 insertions, 2 deletions
diff --git a/source/core/core.vcxproj b/source/core/core.vcxproj
index e0cc33569..b0f33f2a2 100644
--- a/source/core/core.vcxproj
+++ b/source/core/core.vcxproj
@@ -174,10 +174,11 @@
<ClInclude Include="slang-array-view.h" />
<ClInclude Include="slang-array.h" />
<ClInclude Include="slang-basic.h" />
+ <ClInclude Include="slang-blob.h" />
<ClInclude Include="slang-byte-encode-util.h" />
<ClInclude Include="slang-common.h" />
- <ClInclude Include="slang-cpp-compiler.h" />
<ClInclude Include="slang-dictionary.h" />
+ <ClInclude Include="slang-downstream-compiler.h" />
<ClInclude Include="slang-exception.h" />
<ClInclude Include="slang-free-list.h" />
<ClInclude Include="slang-gcc-compiler-util.h" />
@@ -212,8 +213,9 @@
<ClInclude Include="windows\slang-win-visual-studio-util.h" />
</ItemGroup>
<ItemGroup>
+ <ClCompile Include="slang-blob.cpp" />
<ClCompile Include="slang-byte-encode-util.cpp" />
- <ClCompile Include="slang-cpp-compiler.cpp" />
+ <ClCompile Include="slang-downstream-compiler.cpp" />
<ClCompile Include="slang-free-list.cpp" />
<ClCompile Include="slang-gcc-compiler-util.cpp" />
<ClCompile Include="slang-hex-dump-util.cpp" />