summaryrefslogtreecommitdiffstats
path: root/build/visual-studio/render-test-tool
diff options
context:
space:
mode:
authorYong He <yonghe@outlook.com>2021-01-17 22:00:49 -0800
committerGitHub <noreply@github.com>2021-01-17 22:00:49 -0800
commit1296c7bb55b14db24308f31cacdda7f7a71fc937 (patch)
tree935ebf1e829361a17f98f5ead3460998719acf42 /build/visual-studio/render-test-tool
parent2a5d5b32348c33aac7ca62aa9a4c2bb7cff8e08a (diff)
Make `gfx` compile to a DLL. (#1660)
* Make `gfx` compile to a DLL. * Fix cuda * Fix cuda build * Bug gl screen capture bug.
Diffstat (limited to 'build/visual-studio/render-test-tool')
-rw-r--r--build/visual-studio/render-test-tool/render-test-tool.vcxproj5
-rw-r--r--build/visual-studio/render-test-tool/render-test-tool.vcxproj.filters6
2 files changed, 11 insertions, 0 deletions
diff --git a/build/visual-studio/render-test-tool/render-test-tool.vcxproj b/build/visual-studio/render-test-tool/render-test-tool.vcxproj
index b9841e122..e74392972 100644
--- a/build/visual-studio/render-test-tool/render-test-tool.vcxproj
+++ b/build/visual-studio/render-test-tool/render-test-tool.vcxproj
@@ -186,6 +186,7 @@
<ClInclude Include="..\..\..\tools\render-test\shader-input-layout.h" />
<ClInclude Include="..\..\..\tools\render-test\shader-renderer-util.h" />
<ClInclude Include="..\..\..\tools\render-test\slang-support.h" />
+ <ClInclude Include="..\..\..\tools\render-test\surface.h" />
<ClInclude Include="..\..\..\tools\render-test\window.h" />
</ItemGroup>
<ItemGroup>
@@ -197,6 +198,7 @@
<ClCompile Include="..\..\..\tools\render-test\shader-input-layout.cpp" />
<ClCompile Include="..\..\..\tools\render-test\shader-renderer-util.cpp" />
<ClCompile Include="..\..\..\tools\render-test\slang-support.cpp" />
+ <ClCompile Include="..\..\..\tools\render-test\surface.cpp" />
<ClCompile Include="..\..\..\tools\render-test\window.cpp" />
<ClCompile Include="..\..\..\tools\render-test\windows\win-window.cpp" />
</ItemGroup>
@@ -210,6 +212,9 @@
<ProjectReference Include="..\gfx\gfx.vcxproj">
<Project>{222F7498-B40C-4F3F-A704-DDEB91A4484A}</Project>
</ProjectReference>
+ <ProjectReference Include="..\gfx-util\gfx-util.vcxproj">
+ <Project>{F5ADB74E-02A7-44FB-AA3B-FC02F8AC7A4B}</Project>
+ </ProjectReference>
<ProjectReference Include="..\graphics-app-framework\graphics-app-framework.vcxproj">
<Project>{3565FE5E-4FA3-11EB-AE93-0242AC130002}</Project>
</ProjectReference>
diff --git a/build/visual-studio/render-test-tool/render-test-tool.vcxproj.filters b/build/visual-studio/render-test-tool/render-test-tool.vcxproj.filters
index 1c0d82cdd..5223edb08 100644
--- a/build/visual-studio/render-test-tool/render-test-tool.vcxproj.filters
+++ b/build/visual-studio/render-test-tool/render-test-tool.vcxproj.filters
@@ -30,6 +30,9 @@
<ClInclude Include="..\..\..\tools\render-test\slang-support.h">
<Filter>Header Files</Filter>
</ClInclude>
+ <ClInclude Include="..\..\..\tools\render-test\surface.h">
+ <Filter>Header Files</Filter>
+ </ClInclude>
<ClInclude Include="..\..\..\tools\render-test\window.h">
<Filter>Header Files</Filter>
</ClInclude>
@@ -59,6 +62,9 @@
<ClCompile Include="..\..\..\tools\render-test\slang-support.cpp">
<Filter>Source Files</Filter>
</ClCompile>
+ <ClCompile Include="..\..\..\tools\render-test\surface.cpp">
+ <Filter>Source Files</Filter>
+ </ClCompile>
<ClCompile Include="..\..\..\tools\render-test\window.cpp">
<Filter>Source Files</Filter>
</ClCompile>