From 2886bc35e7b023370a8b8d56d78e5335eee2eb98 Mon Sep 17 00:00:00 2001 From: Yong He Date: Fri, 16 Apr 2021 10:35:42 -0700 Subject: Add Hello world example. (#1797) --- .../visual-studio/hello-world/hello-world.vcxproj | 22 ++- .../hello-world/hello-world.vcxproj.filters | 13 +- build/visual-studio/triangle/triangle.vcxproj | 193 +++++++++++++++++++++ .../triangle/triangle.vcxproj.filters | 18 ++ 4 files changed, 236 insertions(+), 10 deletions(-) create mode 100644 build/visual-studio/triangle/triangle.vcxproj create mode 100644 build/visual-studio/triangle/triangle.vcxproj.filters (limited to 'build') diff --git a/build/visual-studio/hello-world/hello-world.vcxproj b/build/visual-studio/hello-world/hello-world.vcxproj index 7164fd9e6..181e1de40 100644 --- a/build/visual-studio/hello-world/hello-world.vcxproj +++ b/build/visual-studio/hello-world/hello-world.vcxproj @@ -98,13 +98,13 @@ NotUsing Level3 _DEBUG;%(PreprocessorDefinitions) - ..\..\..;..\..\..\tools;%(AdditionalIncludeDirectories) + ..\..\..;..\..\..\tools;..\..\..\external\vulkan\include;%(AdditionalIncludeDirectories) EditAndContinue Disabled MultiThreadedDebug - Windows + Console true @@ -113,13 +113,13 @@ NotUsing Level3 _DEBUG;%(PreprocessorDefinitions) - ..\..\..;..\..\..\tools;%(AdditionalIncludeDirectories) + ..\..\..;..\..\..\tools;..\..\..\external\vulkan\include;%(AdditionalIncludeDirectories) EditAndContinue Disabled MultiThreadedDebug - Windows + Console true @@ -128,7 +128,7 @@ NotUsing Level3 NDEBUG;%(PreprocessorDefinitions) - ..\..\..;..\..\..\tools;%(AdditionalIncludeDirectories) + ..\..\..;..\..\..\tools;..\..\..\external\vulkan\include;%(AdditionalIncludeDirectories) Full true true @@ -137,7 +137,7 @@ MultiThreaded - Windows + Console true true @@ -147,7 +147,7 @@ NotUsing Level3 NDEBUG;%(PreprocessorDefinitions) - ..\..\..;..\..\..\tools;%(AdditionalIncludeDirectories) + ..\..\..;..\..\..\tools;..\..\..\external\vulkan\include;%(AdditionalIncludeDirectories) Full true true @@ -156,16 +156,20 @@ MultiThreaded - Windows + Console true true + + + + - + diff --git a/build/visual-studio/hello-world/hello-world.vcxproj.filters b/build/visual-studio/hello-world/hello-world.vcxproj.filters index 9399d6c61..3c5e0c8dc 100644 --- a/build/visual-studio/hello-world/hello-world.vcxproj.filters +++ b/build/visual-studio/hello-world/hello-world.vcxproj.filters @@ -1,17 +1,28 @@ + + {21EB8090-0D4E-1035-B6D3-48EBA215DCB7} + {E9C7FDCE-D52A-8D73-7EB0-C5296AF258F6} + + + Header Files + + Source Files + + Source Files + - + Source Files diff --git a/build/visual-studio/triangle/triangle.vcxproj b/build/visual-studio/triangle/triangle.vcxproj new file mode 100644 index 000000000..5a6915713 --- /dev/null +++ b/build/visual-studio/triangle/triangle.vcxproj @@ -0,0 +1,193 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + {3BB99068-27C9-3C39-9082-A1577CB12BD2} + true + Win32Proj + triangle + + + + Application + true + Unicode + v140 + + + Application + true + Unicode + v140 + + + Application + false + Unicode + v140 + + + Application + false + Unicode + v140 + + + + + + + + + + + + + + + + + + + true + ..\..\..\bin\windows-x86\debug\ + ..\..\..\intermediate\windows-x86\debug\triangle\ + triangle + .exe + + + true + ..\..\..\bin\windows-x64\debug\ + ..\..\..\intermediate\windows-x64\debug\triangle\ + triangle + .exe + + + false + ..\..\..\bin\windows-x86\release\ + ..\..\..\intermediate\windows-x86\release\triangle\ + triangle + .exe + + + false + ..\..\..\bin\windows-x64\release\ + ..\..\..\intermediate\windows-x64\release\triangle\ + triangle + .exe + + + + NotUsing + Level3 + _DEBUG;%(PreprocessorDefinitions) + ..\..\..;..\..\..\tools;%(AdditionalIncludeDirectories) + EditAndContinue + Disabled + MultiThreadedDebug + + + Windows + true + + + + + NotUsing + Level3 + _DEBUG;%(PreprocessorDefinitions) + ..\..\..;..\..\..\tools;%(AdditionalIncludeDirectories) + EditAndContinue + Disabled + MultiThreadedDebug + + + Windows + true + + + + + NotUsing + Level3 + NDEBUG;%(PreprocessorDefinitions) + ..\..\..;..\..\..\tools;%(AdditionalIncludeDirectories) + Full + true + true + false + true + MultiThreaded + + + Windows + true + true + + + + + NotUsing + Level3 + NDEBUG;%(PreprocessorDefinitions) + ..\..\..;..\..\..\tools;%(AdditionalIncludeDirectories) + Full + true + true + false + true + MultiThreaded + + + Windows + true + true + + + + + + + + + + + {37BED5B5-23FA-D81F-8C0C-F1167867813A} + + + {DB00DA62-0533-4AFD-B59F-A67D5B3A0808} + + + {222F7498-B40C-4F3F-A704-DDEB91A4484A} + + + {F5ADB74E-02A7-44FB-AA3B-FC02F8AC7A4B} + + + {3565FE5E-4FA3-11EB-AE93-0242AC130002} + + + {F9BE7957-8399-899E-0C49-E714FDDD4B65} + + + + + + \ No newline at end of file diff --git a/build/visual-studio/triangle/triangle.vcxproj.filters b/build/visual-studio/triangle/triangle.vcxproj.filters new file mode 100644 index 000000000..c5d6a7793 --- /dev/null +++ b/build/visual-studio/triangle/triangle.vcxproj.filters @@ -0,0 +1,18 @@ + + + + + {E9C7FDCE-D52A-8D73-7EB0-C5296AF258F6} + + + + + Source Files + + + + + Source Files + + + \ No newline at end of file -- cgit v1.2.3