From 639b34294ffc20721c66db46e59e07d9100ac4b8 Mon Sep 17 00:00:00 2001 From: chai Date: Thu, 10 Sep 2020 20:30:31 +0800 Subject: *init --- Projects/VisualStudio/.vs/Jin/v15/.suo | Bin 0 -> 30720 bytes Projects/VisualStudio/.vs/Jin/v15/Browse.VC.db | Bin 0 -> 77180928 bytes Projects/VisualStudio/.vs/Jin/v15/Solution.VC.db | Bin 0 -> 2191360 bytes .../v15/ipch/AutoPCH/19f11c8463ef0178/DEVICE.ipch | Bin 0 -> 28639232 bytes .../Jin/v15/ipch/AutoPCH/75d245bf98f791a/MAIN.ipch | Bin 0 -> 13697024 bytes .../v15/ipch/AutoPCH/7e12c6410b8f7e79/MAINS.ipch | Bin 0 -> 13697024 bytes Projects/VisualStudio/Box2D/Box2D.vcxproj | 240 ++++++++++ Projects/VisualStudio/Box2D/Box2D.vcxproj.filters | 307 +++++++++++++ Projects/VisualStudio/Box2D/Box2D.vcxproj.user | 4 + Projects/VisualStudio/Editor/Editor.vcxproj | 141 ++++++ .../VisualStudio/Editor/Editor.vcxproj.filters | 2 + Projects/VisualStudio/Editor/Editor.vcxproj.user | 4 + Projects/VisualStudio/Jin.sln | 122 ++++++ Projects/VisualStudio/Runner/Runner.vcxproj | 257 +++++++++++ .../VisualStudio/Runner/Runner.vcxproj.filters | 345 +++++++++++++++ Projects/VisualStudio/Runner/Runner.vcxproj.user | 4 + Projects/VisualStudio/SDL2/SDL2.vcxproj | 467 ++++++++++++++++++++ Projects/VisualStudio/SDL2/SDL2.vcxproj.filters | 486 +++++++++++++++++++++ Projects/VisualStudio/SDL2/SDL2.vcxproj.user | 4 + Projects/VisualStudio/SDL2main/SDL2main.vcxproj | 138 ++++++ .../VisualStudio/SDL2main/SDL2main.vcxproj.filters | 6 + .../VisualStudio/SDL2main/SDL2main.vcxproj.user | 4 + Projects/VisualStudio/glad/glad.vcxproj | 138 ++++++ Projects/VisualStudio/glad/glad.vcxproj.filters | 10 + Projects/VisualStudio/glad/glad.vcxproj.user | 4 + Projects/VisualStudio/lua51/lua51.vcxproj | 188 ++++++++ Projects/VisualStudio/lua51/lua51.vcxproj.filters | 63 +++ Projects/VisualStudio/lua51/lua51.vcxproj.user | 4 + Projects/VisualStudio/stb/stb.vcxproj | 135 ++++++ Projects/VisualStudio/stb/stb.vcxproj.filters | 10 + Projects/VisualStudio/stb/stb.vcxproj.user | 4 + Projects/VisualStudio/zlib/zlib.vcxproj | 122 ++++++ Projects/VisualStudio/zlib/zlib.vcxproj.filters | 17 + Projects/VisualStudio/zlib/zlib.vcxproj.user | 4 + 34 files changed, 3230 insertions(+) create mode 100644 Projects/VisualStudio/.vs/Jin/v15/.suo create mode 100644 Projects/VisualStudio/.vs/Jin/v15/Browse.VC.db create mode 100644 Projects/VisualStudio/.vs/Jin/v15/Solution.VC.db create mode 100644 Projects/VisualStudio/.vs/Jin/v15/ipch/AutoPCH/19f11c8463ef0178/DEVICE.ipch create mode 100644 Projects/VisualStudio/.vs/Jin/v15/ipch/AutoPCH/75d245bf98f791a/MAIN.ipch create mode 100644 Projects/VisualStudio/.vs/Jin/v15/ipch/AutoPCH/7e12c6410b8f7e79/MAINS.ipch create mode 100644 Projects/VisualStudio/Box2D/Box2D.vcxproj create mode 100644 Projects/VisualStudio/Box2D/Box2D.vcxproj.filters create mode 100644 Projects/VisualStudio/Box2D/Box2D.vcxproj.user create mode 100644 Projects/VisualStudio/Editor/Editor.vcxproj create mode 100644 Projects/VisualStudio/Editor/Editor.vcxproj.filters create mode 100644 Projects/VisualStudio/Editor/Editor.vcxproj.user create mode 100644 Projects/VisualStudio/Jin.sln create mode 100644 Projects/VisualStudio/Runner/Runner.vcxproj create mode 100644 Projects/VisualStudio/Runner/Runner.vcxproj.filters create mode 100644 Projects/VisualStudio/Runner/Runner.vcxproj.user create mode 100644 Projects/VisualStudio/SDL2/SDL2.vcxproj create mode 100644 Projects/VisualStudio/SDL2/SDL2.vcxproj.filters create mode 100644 Projects/VisualStudio/SDL2/SDL2.vcxproj.user create mode 100644 Projects/VisualStudio/SDL2main/SDL2main.vcxproj create mode 100644 Projects/VisualStudio/SDL2main/SDL2main.vcxproj.filters create mode 100644 Projects/VisualStudio/SDL2main/SDL2main.vcxproj.user create mode 100644 Projects/VisualStudio/glad/glad.vcxproj create mode 100644 Projects/VisualStudio/glad/glad.vcxproj.filters create mode 100644 Projects/VisualStudio/glad/glad.vcxproj.user create mode 100644 Projects/VisualStudio/lua51/lua51.vcxproj create mode 100644 Projects/VisualStudio/lua51/lua51.vcxproj.filters create mode 100644 Projects/VisualStudio/lua51/lua51.vcxproj.user create mode 100644 Projects/VisualStudio/stb/stb.vcxproj create mode 100644 Projects/VisualStudio/stb/stb.vcxproj.filters create mode 100644 Projects/VisualStudio/stb/stb.vcxproj.user create mode 100644 Projects/VisualStudio/zlib/zlib.vcxproj create mode 100644 Projects/VisualStudio/zlib/zlib.vcxproj.filters create mode 100644 Projects/VisualStudio/zlib/zlib.vcxproj.user (limited to 'Projects') diff --git a/Projects/VisualStudio/.vs/Jin/v15/.suo b/Projects/VisualStudio/.vs/Jin/v15/.suo new file mode 100644 index 0000000..8b4def7 Binary files /dev/null and b/Projects/VisualStudio/.vs/Jin/v15/.suo differ diff --git a/Projects/VisualStudio/.vs/Jin/v15/Browse.VC.db b/Projects/VisualStudio/.vs/Jin/v15/Browse.VC.db new file mode 100644 index 0000000..60080a9 Binary files /dev/null and b/Projects/VisualStudio/.vs/Jin/v15/Browse.VC.db differ diff --git a/Projects/VisualStudio/.vs/Jin/v15/Solution.VC.db b/Projects/VisualStudio/.vs/Jin/v15/Solution.VC.db new file mode 100644 index 0000000..b5f9a99 Binary files /dev/null and b/Projects/VisualStudio/.vs/Jin/v15/Solution.VC.db differ diff --git a/Projects/VisualStudio/.vs/Jin/v15/ipch/AutoPCH/19f11c8463ef0178/DEVICE.ipch b/Projects/VisualStudio/.vs/Jin/v15/ipch/AutoPCH/19f11c8463ef0178/DEVICE.ipch new file mode 100644 index 0000000..66245be Binary files /dev/null and b/Projects/VisualStudio/.vs/Jin/v15/ipch/AutoPCH/19f11c8463ef0178/DEVICE.ipch differ diff --git a/Projects/VisualStudio/.vs/Jin/v15/ipch/AutoPCH/75d245bf98f791a/MAIN.ipch b/Projects/VisualStudio/.vs/Jin/v15/ipch/AutoPCH/75d245bf98f791a/MAIN.ipch new file mode 100644 index 0000000..459655c Binary files /dev/null and b/Projects/VisualStudio/.vs/Jin/v15/ipch/AutoPCH/75d245bf98f791a/MAIN.ipch differ diff --git a/Projects/VisualStudio/.vs/Jin/v15/ipch/AutoPCH/7e12c6410b8f7e79/MAINS.ipch b/Projects/VisualStudio/.vs/Jin/v15/ipch/AutoPCH/7e12c6410b8f7e79/MAINS.ipch new file mode 100644 index 0000000..93759f3 Binary files /dev/null and b/Projects/VisualStudio/.vs/Jin/v15/ipch/AutoPCH/7e12c6410b8f7e79/MAINS.ipch differ diff --git a/Projects/VisualStudio/Box2D/Box2D.vcxproj b/Projects/VisualStudio/Box2D/Box2D.vcxproj new file mode 100644 index 0000000..301c70d --- /dev/null +++ b/Projects/VisualStudio/Box2D/Box2D.vcxproj @@ -0,0 +1,240 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 15.0 + {12759F92-73F9-48BC-8808-9FE709DCD134} + Box2D + 10.0.17763.0 + + + + StaticLibrary + true + v141 + MultiByte + + + StaticLibrary + false + v141 + true + MultiByte + + + StaticLibrary + true + v141 + MultiByte + + + StaticLibrary + false + v141 + true + MultiByte + + + + + + + + + + + + + + + + + + + + + $(SolutionDir)..\..\Build + + + $(SolutionDir)..\..\Build + + + $(SolutionDir)..\..\Build + + + $(SolutionDir)..\..\Build + + + + Level3 + Disabled + true + true + $(SolutionDir)..\..\ThirdParty\;%(AdditionalIncludeDirectories) + + + Console + + + + + Level3 + Disabled + true + true + $(SolutionDir)..\..\ThirdParty\;%(AdditionalIncludeDirectories) + + + Console + + + + + Level3 + MaxSpeed + true + true + true + true + $(SolutionDir)..\..\ThirdParty\;%(AdditionalIncludeDirectories) + + + Console + true + true + + + + + Level3 + MaxSpeed + true + true + true + true + $(SolutionDir)..\..\ThirdParty\;%(AdditionalIncludeDirectories) + + + Console + true + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Projects/VisualStudio/Box2D/Box2D.vcxproj.filters b/Projects/VisualStudio/Box2D/Box2D.vcxproj.filters new file mode 100644 index 0000000..5b728a8 --- /dev/null +++ b/Projects/VisualStudio/Box2D/Box2D.vcxproj.filters @@ -0,0 +1,307 @@ + + + + + {09bf4bef-64ba-40a6-8d46-a9459aa4089b} + + + {68657294-cdd0-4b9e-b22e-e315aa0efdcb} + + + {b207a2d7-eca3-4cff-b827-d7c79f12be53} + + + {1dfb6e8a-f4d2-42f5-a979-9ec02f4dd5fa} + + + {831e1705-b1e4-47e8-a440-526efb00f606} + + + {50b157ff-3421-4585-9e38-01135dab24dd} + + + {4027fc83-d2fd-473e-af0c-1d181d72f292} + + + + + Collision + + + Collision + + + Collision + + + Collision + + + Collision + + + Collision + + + Collision + + + Collision + + + Collision\Shapes + + + Collision\Shapes + + + Collision\Shapes + + + Collision\Shapes + + + Common + + + Common + + + Common + + + Common + + + Common + + + Common + + + Dynamics + + + Dynamics + + + Dynamics + + + Dynamics + + + Dynamics + + + Dynamics + + + Dynamics\Contacts + + + Dynamics\Contacts + + + Dynamics\Contacts + + + Dynamics\Contacts + + + Dynamics\Contacts + + + Dynamics\Contacts + + + Dynamics\Contacts + + + Dynamics\Contacts + + + Dynamics\Contacts + + + Dynamics\Joints + + + Dynamics\Joints + + + Dynamics\Joints + + + Dynamics\Joints + + + Dynamics\Joints + + + Dynamics\Joints + + + Dynamics\Joints + + + Dynamics\Joints + + + Dynamics\Joints + + + Dynamics\Joints + + + Dynamics\Joints + + + Dynamics\Joints + + + Rope + + + + + Collision + + + Collision + + + Collision + + + Collision + + + Collision + + + Collision\Shapes + + + Collision\Shapes + + + Collision\Shapes + + + Collision\Shapes + + + Collision\Shapes + + + Common + + + Common + + + Common + + + Common + + + Common + + + Common + + + Common + + + Dynamics + + + Dynamics + + + Dynamics + + + Dynamics + + + Dynamics + + + Dynamics + + + Dynamics + + + Dynamics\Contacts + + + Dynamics\Contacts + + + Dynamics\Contacts + + + Dynamics\Contacts + + + Dynamics\Contacts + + + Dynamics\Contacts + + + Dynamics\Contacts + + + Dynamics\Contacts + + + Dynamics\Contacts + + + Dynamics\Joints + + + Dynamics\Joints + + + Dynamics\Joints + + + Dynamics\Joints + + + Dynamics\Joints + + + Dynamics\Joints + + + Dynamics\Joints + + + Dynamics\Joints + + + Dynamics\Joints + + + Dynamics\Joints + + + Dynamics\Joints + + + Dynamics\Joints + + + Rope + + + + \ No newline at end of file diff --git a/Projects/VisualStudio/Box2D/Box2D.vcxproj.user b/Projects/VisualStudio/Box2D/Box2D.vcxproj.user new file mode 100644 index 0000000..be25078 --- /dev/null +++ b/Projects/VisualStudio/Box2D/Box2D.vcxproj.user @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/Projects/VisualStudio/Editor/Editor.vcxproj b/Projects/VisualStudio/Editor/Editor.vcxproj new file mode 100644 index 0000000..3f32198 --- /dev/null +++ b/Projects/VisualStudio/Editor/Editor.vcxproj @@ -0,0 +1,141 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 15.0 + {CB47B19A-6649-4A1A-8FE5-6359178AA48F} + Editor + 10.0.17763.0 + + + + Application + true + v141 + MultiByte + + + Application + false + v141 + true + MultiByte + + + Application + true + v141 + MultiByte + + + Application + false + v141 + true + MultiByte + + + + + + + + + + + + + + + + + + + + + $(SolutionDir)..\..\Build + + + $(SolutionDir)..\..\Build + + + $(SolutionDir)..\..\Build + + + $(SolutionDir)..\..\Build + + + + Level3 + Disabled + true + true + + + Console + + + + + Level3 + Disabled + true + true + + + Console + + + + + Level3 + MaxSpeed + true + true + true + true + + + Console + true + true + + + + + Level3 + MaxSpeed + true + true + true + true + + + Console + true + true + + + + + + + + \ No newline at end of file diff --git a/Projects/VisualStudio/Editor/Editor.vcxproj.filters b/Projects/VisualStudio/Editor/Editor.vcxproj.filters new file mode 100644 index 0000000..9cd8510 --- /dev/null +++ b/Projects/VisualStudio/Editor/Editor.vcxproj.filters @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/Projects/VisualStudio/Editor/Editor.vcxproj.user b/Projects/VisualStudio/Editor/Editor.vcxproj.user new file mode 100644 index 0000000..be25078 --- /dev/null +++ b/Projects/VisualStudio/Editor/Editor.vcxproj.user @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/Projects/VisualStudio/Jin.sln b/Projects/VisualStudio/Jin.sln new file mode 100644 index 0000000..5ebfa47 --- /dev/null +++ b/Projects/VisualStudio/Jin.sln @@ -0,0 +1,122 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 15 +VisualStudioVersion = 15.0.28307.1022 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Runner", "Runner\Runner.vcxproj", "{4C26BDCC-CA08-4C43-8EFF-B62A204D5FBD}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SDL2", "SDL2\SDL2.vcxproj", "{8658F91C-9AAE-4819-9005-77D09C61D97F}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "ThirdParty", "ThirdParty", "{0F6EE105-E1FF-4770-8314-06F9F98FB68F}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Box2D", "Box2D\Box2D.vcxproj", "{12759F92-73F9-48BC-8808-9FE709DCD134}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Editor", "Editor\Editor.vcxproj", "{CB47B19A-6649-4A1A-8FE5-6359178AA48F}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SDL2main", "SDL2main\SDL2main.vcxproj", "{9B542E6D-8677-4AD6-9A69-4650103906C5}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "glad", "glad\glad.vcxproj", "{385F2D3A-1CEF-4AA1-8051-527F6B68DD81}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "lua51", "lua51\lua51.vcxproj", "{AD09415F-4BF9-4FCE-901F-7AB22D429CFC}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "stb", "stb\stb.vcxproj", "{BFAA8A26-DE6F-4B71-8851-3FF3CF0C8B9F}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "zlib", "zlib\zlib.vcxproj", "{49F29C84-8A46-4421-9F93-CA96A9292716}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|x64 = Debug|x64 + Debug|x86 = Debug|x86 + Release|x64 = Release|x64 + Release|x86 = Release|x86 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {4C26BDCC-CA08-4C43-8EFF-B62A204D5FBD}.Debug|x64.ActiveCfg = Debug|x64 + {4C26BDCC-CA08-4C43-8EFF-B62A204D5FBD}.Debug|x64.Build.0 = Debug|x64 + {4C26BDCC-CA08-4C43-8EFF-B62A204D5FBD}.Debug|x86.ActiveCfg = Debug|Win32 + {4C26BDCC-CA08-4C43-8EFF-B62A204D5FBD}.Debug|x86.Build.0 = Debug|Win32 + {4C26BDCC-CA08-4C43-8EFF-B62A204D5FBD}.Release|x64.ActiveCfg = Release|x64 + {4C26BDCC-CA08-4C43-8EFF-B62A204D5FBD}.Release|x64.Build.0 = Release|x64 + {4C26BDCC-CA08-4C43-8EFF-B62A204D5FBD}.Release|x86.ActiveCfg = Release|Win32 + {4C26BDCC-CA08-4C43-8EFF-B62A204D5FBD}.Release|x86.Build.0 = Release|Win32 + {8658F91C-9AAE-4819-9005-77D09C61D97F}.Debug|x64.ActiveCfg = Debug|x64 + {8658F91C-9AAE-4819-9005-77D09C61D97F}.Debug|x64.Build.0 = Debug|x64 + {8658F91C-9AAE-4819-9005-77D09C61D97F}.Debug|x86.ActiveCfg = Debug|Win32 + {8658F91C-9AAE-4819-9005-77D09C61D97F}.Debug|x86.Build.0 = Debug|Win32 + {8658F91C-9AAE-4819-9005-77D09C61D97F}.Release|x64.ActiveCfg = Release|x64 + {8658F91C-9AAE-4819-9005-77D09C61D97F}.Release|x64.Build.0 = Release|x64 + {8658F91C-9AAE-4819-9005-77D09C61D97F}.Release|x86.ActiveCfg = Release|Win32 + {8658F91C-9AAE-4819-9005-77D09C61D97F}.Release|x86.Build.0 = Release|Win32 + {12759F92-73F9-48BC-8808-9FE709DCD134}.Debug|x64.ActiveCfg = Debug|x64 + {12759F92-73F9-48BC-8808-9FE709DCD134}.Debug|x64.Build.0 = Debug|x64 + {12759F92-73F9-48BC-8808-9FE709DCD134}.Debug|x86.ActiveCfg = Debug|Win32 + {12759F92-73F9-48BC-8808-9FE709DCD134}.Debug|x86.Build.0 = Debug|Win32 + {12759F92-73F9-48BC-8808-9FE709DCD134}.Release|x64.ActiveCfg = Release|x64 + {12759F92-73F9-48BC-8808-9FE709DCD134}.Release|x64.Build.0 = Release|x64 + {12759F92-73F9-48BC-8808-9FE709DCD134}.Release|x86.ActiveCfg = Release|Win32 + {12759F92-73F9-48BC-8808-9FE709DCD134}.Release|x86.Build.0 = Release|Win32 + {CB47B19A-6649-4A1A-8FE5-6359178AA48F}.Debug|x64.ActiveCfg = Debug|x64 + {CB47B19A-6649-4A1A-8FE5-6359178AA48F}.Debug|x64.Build.0 = Debug|x64 + {CB47B19A-6649-4A1A-8FE5-6359178AA48F}.Debug|x86.ActiveCfg = Debug|Win32 + {CB47B19A-6649-4A1A-8FE5-6359178AA48F}.Debug|x86.Build.0 = Debug|Win32 + {CB47B19A-6649-4A1A-8FE5-6359178AA48F}.Release|x64.ActiveCfg = Release|x64 + {CB47B19A-6649-4A1A-8FE5-6359178AA48F}.Release|x64.Build.0 = Release|x64 + {CB47B19A-6649-4A1A-8FE5-6359178AA48F}.Release|x86.ActiveCfg = Release|Win32 + {CB47B19A-6649-4A1A-8FE5-6359178AA48F}.Release|x86.Build.0 = Release|Win32 + {9B542E6D-8677-4AD6-9A69-4650103906C5}.Debug|x64.ActiveCfg = Debug|x64 + {9B542E6D-8677-4AD6-9A69-4650103906C5}.Debug|x64.Build.0 = Debug|x64 + {9B542E6D-8677-4AD6-9A69-4650103906C5}.Debug|x86.ActiveCfg = Debug|Win32 + {9B542E6D-8677-4AD6-9A69-4650103906C5}.Debug|x86.Build.0 = Debug|Win32 + {9B542E6D-8677-4AD6-9A69-4650103906C5}.Release|x64.ActiveCfg = Release|x64 + {9B542E6D-8677-4AD6-9A69-4650103906C5}.Release|x64.Build.0 = Release|x64 + {9B542E6D-8677-4AD6-9A69-4650103906C5}.Release|x86.ActiveCfg = Release|Win32 + {9B542E6D-8677-4AD6-9A69-4650103906C5}.Release|x86.Build.0 = Release|Win32 + {385F2D3A-1CEF-4AA1-8051-527F6B68DD81}.Debug|x64.ActiveCfg = Debug|x64 + {385F2D3A-1CEF-4AA1-8051-527F6B68DD81}.Debug|x64.Build.0 = Debug|x64 + {385F2D3A-1CEF-4AA1-8051-527F6B68DD81}.Debug|x86.ActiveCfg = Debug|Win32 + {385F2D3A-1CEF-4AA1-8051-527F6B68DD81}.Debug|x86.Build.0 = Debug|Win32 + {385F2D3A-1CEF-4AA1-8051-527F6B68DD81}.Release|x64.ActiveCfg = Release|x64 + {385F2D3A-1CEF-4AA1-8051-527F6B68DD81}.Release|x64.Build.0 = Release|x64 + {385F2D3A-1CEF-4AA1-8051-527F6B68DD81}.Release|x86.ActiveCfg = Release|Win32 + {385F2D3A-1CEF-4AA1-8051-527F6B68DD81}.Release|x86.Build.0 = Release|Win32 + {AD09415F-4BF9-4FCE-901F-7AB22D429CFC}.Debug|x64.ActiveCfg = Debug|x64 + {AD09415F-4BF9-4FCE-901F-7AB22D429CFC}.Debug|x64.Build.0 = Debug|x64 + {AD09415F-4BF9-4FCE-901F-7AB22D429CFC}.Debug|x86.ActiveCfg = Debug|Win32 + {AD09415F-4BF9-4FCE-901F-7AB22D429CFC}.Debug|x86.Build.0 = Debug|Win32 + {AD09415F-4BF9-4FCE-901F-7AB22D429CFC}.Release|x64.ActiveCfg = Release|x64 + {AD09415F-4BF9-4FCE-901F-7AB22D429CFC}.Release|x64.Build.0 = Release|x64 + {AD09415F-4BF9-4FCE-901F-7AB22D429CFC}.Release|x86.ActiveCfg = Release|Win32 + {AD09415F-4BF9-4FCE-901F-7AB22D429CFC}.Release|x86.Build.0 = Release|Win32 + {BFAA8A26-DE6F-4B71-8851-3FF3CF0C8B9F}.Debug|x64.ActiveCfg = Debug|x64 + {BFAA8A26-DE6F-4B71-8851-3FF3CF0C8B9F}.Debug|x64.Build.0 = Debug|x64 + {BFAA8A26-DE6F-4B71-8851-3FF3CF0C8B9F}.Debug|x86.ActiveCfg = Debug|Win32 + {BFAA8A26-DE6F-4B71-8851-3FF3CF0C8B9F}.Debug|x86.Build.0 = Debug|Win32 + {BFAA8A26-DE6F-4B71-8851-3FF3CF0C8B9F}.Release|x64.ActiveCfg = Release|x64 + {BFAA8A26-DE6F-4B71-8851-3FF3CF0C8B9F}.Release|x64.Build.0 = Release|x64 + {BFAA8A26-DE6F-4B71-8851-3FF3CF0C8B9F}.Release|x86.ActiveCfg = Release|Win32 + {BFAA8A26-DE6F-4B71-8851-3FF3CF0C8B9F}.Release|x86.Build.0 = Release|Win32 + {49F29C84-8A46-4421-9F93-CA96A9292716}.Debug|x64.ActiveCfg = Debug|x64 + {49F29C84-8A46-4421-9F93-CA96A9292716}.Debug|x64.Build.0 = Debug|x64 + {49F29C84-8A46-4421-9F93-CA96A9292716}.Debug|x86.ActiveCfg = Debug|Win32 + {49F29C84-8A46-4421-9F93-CA96A9292716}.Debug|x86.Build.0 = Debug|Win32 + {49F29C84-8A46-4421-9F93-CA96A9292716}.Release|x64.ActiveCfg = Release|x64 + {49F29C84-8A46-4421-9F93-CA96A9292716}.Release|x64.Build.0 = Release|x64 + {49F29C84-8A46-4421-9F93-CA96A9292716}.Release|x86.ActiveCfg = Release|Win32 + {49F29C84-8A46-4421-9F93-CA96A9292716}.Release|x86.Build.0 = Release|Win32 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(NestedProjects) = preSolution + {8658F91C-9AAE-4819-9005-77D09C61D97F} = {0F6EE105-E1FF-4770-8314-06F9F98FB68F} + {12759F92-73F9-48BC-8808-9FE709DCD134} = {0F6EE105-E1FF-4770-8314-06F9F98FB68F} + {9B542E6D-8677-4AD6-9A69-4650103906C5} = {0F6EE105-E1FF-4770-8314-06F9F98FB68F} + {385F2D3A-1CEF-4AA1-8051-527F6B68DD81} = {0F6EE105-E1FF-4770-8314-06F9F98FB68F} + {AD09415F-4BF9-4FCE-901F-7AB22D429CFC} = {0F6EE105-E1FF-4770-8314-06F9F98FB68F} + {BFAA8A26-DE6F-4B71-8851-3FF3CF0C8B9F} = {0F6EE105-E1FF-4770-8314-06F9F98FB68F} + {49F29C84-8A46-4421-9F93-CA96A9292716} = {0F6EE105-E1FF-4770-8314-06F9F98FB68F} + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {C78D376C-9B0B-4EF0-A7D1-0F612F43E793} + EndGlobalSection +EndGlobal diff --git a/Projects/VisualStudio/Runner/Runner.vcxproj b/Projects/VisualStudio/Runner/Runner.vcxproj new file mode 100644 index 0000000..91f731c --- /dev/null +++ b/Projects/VisualStudio/Runner/Runner.vcxproj @@ -0,0 +1,257 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + {12759f92-73f9-48bc-8808-9fe709dcd134} + + + {9b542e6d-8677-4ad6-9a69-4650103906c5} + + + {12b7b0f8-6581-4321-9627-3ee601100463} + + + + + + + + 15.0 + {4C26BDCC-CA08-4C43-8EFF-B62A204D5FBD} + Runner + 10.0.17763.0 + + + + Application + true + v141 + MultiByte + + + Application + false + v141 + true + MultiByte + + + Application + true + v141 + MultiByte + + + Application + false + v141 + true + MultiByte + + + + + + + + + + + + + + + + + + + + + $(SolutionDir)..\..\Build + + + $(SolutionDir)..\..\Build + + + $(SolutionDir)..\..\Build + + + $(SolutionDir)..\..\Build + + + + Level3 + Disabled + true + true + $(SolutionDir)..\..\ThirdParty\;$(SolutionDir)..\..\ThirdParty\SDL2\include;%(AdditionalIncludeDirectories) + + + Console + + + + + Level3 + Disabled + true + true + $(SolutionDir)..\..\ThirdParty\;$(SolutionDir)..\..\ThirdParty\SDL2\include;%(AdditionalIncludeDirectories) + + + Console + + + + + Level3 + MaxSpeed + true + true + true + true + $(SolutionDir)..\..\ThirdParty\;$(SolutionDir)..\..\ThirdParty\SDL2\include;%(AdditionalIncludeDirectories) + + + Console + true + true + + + + + Level3 + MaxSpeed + true + true + true + true + $(SolutionDir)..\..\ThirdParty\;$(SolutionDir)..\..\ThirdParty\SDL2\include;%(AdditionalIncludeDirectories) + + + Console + true + true + + + + + + \ No newline at end of file diff --git a/Projects/VisualStudio/Runner/Runner.vcxproj.filters b/Projects/VisualStudio/Runner/Runner.vcxproj.filters new file mode 100644 index 0000000..028ee4a --- /dev/null +++ b/Projects/VisualStudio/Runner/Runner.vcxproj.filters @@ -0,0 +1,345 @@ + + + + + {e789ad2d-945c-482e-8316-1dd0ccdfc465} + + + {9ad1872a-2d30-43f7-be83-f30d53e57970} + + + {c7bba1da-cea1-43fa-b344-17a3d4abc615} + + + {d0c5cd2c-bc7a-437a-86ce-903b6891c0dd} + + + {93deee15-5efc-4231-ab54-56f471ab701f} + + + {088f2ab7-cbf6-4338-b43a-652fde8d0b4b} + + + {ec69ceaf-4fa8-4296-827e-fd4c537ec5ea} + + + {bfc9838c-ddde-4d86-8da3-4ccebd976cde} + + + {f15a5d95-54d1-49e5-bcdf-2759f0afc5c4} + + + {5bbfbd7d-379a-43e9-b05a-8f97b7f3fa3a} + + + {e53ba507-aa27-4d67-9da4-42752bc84dc8} + + + {158d8348-2b65-4ff1-b313-ba9f7bcfde32} + + + {fb970ccc-e9aa-4f61-854c-0b852503a375} + + + {a354c650-8493-41a2-81e5-205495beb0e5} + + + {4478c64f-e27a-4be6-a189-8d99e0fc6b15} + + + + + Utilities + + + Utilities + + + Graphics + + + Mesh + + + Mesh + + + Threads + + + Threads + + + Threads + + + Mesh + + + Profiler + + + Utilities + + + Graphics + + + Graphics + + + Math + + + Graphics + + + Mesh + + + Math + + + Graphics + + + Input + + + Graphics + + + Graphics + + + Graphics + + + Utilities + + + Utilities + + + FileSystem + + + Utilities + + + Utilities + + + Graphics + + + Scripting + + + Scripting + + + Scripting + + + Scripting + + + Scripting + + + Scripting + + + Scripting + + + Scripting + + + Scripting + + + Scripting + + + Scripting + + + Scripting + + + Scripting + + + Scripting + + + FileSystem + + + Graphics + + + Mesh + + + Graphics + + + Utilities + + + Graphics + + + Graphics + + + Math + + + Shaders + + + Shaders + + + Shaders + + + Utilities + + + Profiler + + + Mesh + + + Graphics + + + + + Mesh + + + Threads + + + Threads + + + Graphics + + + Math + + + Graphics\Scripting + + + Graphics + + + Graphics + + + Graphics + + + Math + + + Graphics + + + Physics\Scripting + + + Input + + + Graphics + + + Graphics + + + Graphics\Scripting + + + Graphics + + + FileSystem + + + Utilities + + + Utilities + + + Graphics + + + Scripting + + + Scripting + + + Scripting + + + Scripting + + + Scripting + + + Scripting + + + Scripting + + + Scripting + + + Scripting + + + FileSystem + + + Graphics + + + Graphics\Scripting + + + Mesh + + + Graphics + + + Shaders + + + Graphics + + + + + + Scripting + + + Scripting + + + \ No newline at end of file diff --git a/Projects/VisualStudio/Runner/Runner.vcxproj.user b/Projects/VisualStudio/Runner/Runner.vcxproj.user new file mode 100644 index 0000000..be25078 --- /dev/null +++ b/Projects/VisualStudio/Runner/Runner.vcxproj.user @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/Projects/VisualStudio/SDL2/SDL2.vcxproj b/Projects/VisualStudio/SDL2/SDL2.vcxproj new file mode 100644 index 0000000..5dbb9d7 --- /dev/null +++ b/Projects/VisualStudio/SDL2/SDL2.vcxproj @@ -0,0 +1,467 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 15.0 + {8658F91C-9AAE-4819-9005-77D09C61D97F} + SDL2 + 10.0.17763.0 + + + + StaticLibrary + true + v141 + MultiByte + + + DynamicLibrary + false + v141 + true + MultiByte + + + Application + true + v141 + MultiByte + + + Application + false + v141 + true + MultiByte + + + + + + + + + + + + + + + + + + + + + $(SolutionDir)..\..\Build + + + $(SolutionDir)..\..\bin + + + + Level3 + Disabled + true + true + $(SolutionDir)..\..\ThirdParty\SDL2\include;%(AdditionalIncludeDirectories) + OnlyExplicitInline + NDEBUG;_WINDOWS;%(PreprocessorDefinitions) + MultiThreadedDLL + StreamingSIMDExtensions + true + Default + false + true + + + winmm.lib;imm32.lib;version.lib;%(AdditionalDependencies) + true + Windows + true + true + UseFastLinkTimeCodeGeneration + + + true + + + + + Level3 + Disabled + true + true + + + + + Level3 + MaxSpeed + true + true + true + $(SolutionDir)..\..\src\3rdparty\SDL2\include;%(AdditionalIncludeDirectories) + OnlyExplicitInline + NDEBUG;_WINDOWS;%(PreprocessorDefinitions) + MultiThreadedDLL + false + StreamingSIMDExtensions + true + false + Neither + + + true + true + winmm.lib;imm32.lib;version.lib;%(AdditionalDependencies) + true + Windows + + + + + Level3 + MaxSpeed + true + true + true + true + + + true + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Projects/VisualStudio/SDL2/SDL2.vcxproj.filters b/Projects/VisualStudio/SDL2/SDL2.vcxproj.filters new file mode 100644 index 0000000..b0710e0 --- /dev/null +++ b/Projects/VisualStudio/SDL2/SDL2.vcxproj.filters @@ -0,0 +1,486 @@ + + + + + {68cf214f-f5bc-4549-96e8-c44b37523bde} + + + + + include + + + include + + + include + + + include + + + include + + + include + + + include + + + include + + + include + + + include + + + include + + + include + + + include + + + include + + + include + + + include + + + include + + + include + + + include + + + include + + + include + + + include + + + include + + + include + + + include + + + include + + + include + + + include + + + include + + + include + + + include + + + include + + + include + + + include + + + include + + + include + + + include + + + include + + + include + + + include + + + include + + + include + + + include + + + include + + + include + + + include + + + include + + + include + + + include + + + include + + + include + + + include + + + include + + + include + + + include + + + include + + + include + + + include + + + include + + + include + + + include + + + include + + + include + + + include + + + include + + + include + + + include + + + include + + + include + + + include + + + include + + + include + + + include + + + include + + + include + + + include + + + include + + + include + + + include + + + include + + + include + + + include + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Projects/VisualStudio/SDL2/SDL2.vcxproj.user b/Projects/VisualStudio/SDL2/SDL2.vcxproj.user new file mode 100644 index 0000000..be25078 --- /dev/null +++ b/Projects/VisualStudio/SDL2/SDL2.vcxproj.user @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/Projects/VisualStudio/SDL2main/SDL2main.vcxproj b/Projects/VisualStudio/SDL2main/SDL2main.vcxproj new file mode 100644 index 0000000..e018371 --- /dev/null +++ b/Projects/VisualStudio/SDL2main/SDL2main.vcxproj @@ -0,0 +1,138 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 15.0 + {9B542E6D-8677-4AD6-9A69-4650103906C5} + SDL2main + 10.0.17763.0 + + + + StaticLibrary + true + v141 + MultiByte + + + StaticLibrary + false + v141 + true + MultiByte + + + StaticLibrary + true + v141 + MultiByte + + + StaticLibrary + false + v141 + true + MultiByte + + + + + + + + + + + + + + + + + + + + + $(SolutionDir)..\..\Build + + + $(SolutionDir)..\..\Build + + + $(SolutionDir)..\..\Build + + + $(SolutionDir)..\..\Build + + + + Level3 + Disabled + true + true + $(SolutionDir)..\..\ThirdParty\SDL2\include;%(AdditionalIncludeDirectories) + + + + + Level3 + Disabled + true + true + $(SolutionDir)..\..\ThirdParty\SDL2\include;%(AdditionalIncludeDirectories) + + + + + Level3 + MaxSpeed + true + true + true + true + $(SolutionDir)..\..\ThirdParty\SDL2\include;%(AdditionalIncludeDirectories) + + + true + true + + + + + Level3 + MaxSpeed + true + true + true + true + $(SolutionDir)..\..\ThirdParty\SDL2\include;%(AdditionalIncludeDirectories) + + + true + true + + + + + + + + + \ No newline at end of file diff --git a/Projects/VisualStudio/SDL2main/SDL2main.vcxproj.filters b/Projects/VisualStudio/SDL2main/SDL2main.vcxproj.filters new file mode 100644 index 0000000..7d21b2a --- /dev/null +++ b/Projects/VisualStudio/SDL2main/SDL2main.vcxproj.filters @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/Projects/VisualStudio/SDL2main/SDL2main.vcxproj.user b/Projects/VisualStudio/SDL2main/SDL2main.vcxproj.user new file mode 100644 index 0000000..be25078 --- /dev/null +++ b/Projects/VisualStudio/SDL2main/SDL2main.vcxproj.user @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/Projects/VisualStudio/glad/glad.vcxproj b/Projects/VisualStudio/glad/glad.vcxproj new file mode 100644 index 0000000..f32c17a --- /dev/null +++ b/Projects/VisualStudio/glad/glad.vcxproj @@ -0,0 +1,138 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 15.0 + {385F2D3A-1CEF-4AA1-8051-527F6B68DD81} + glad + 10.0.17763.0 + + + + StaticLibrary + true + v141 + MultiByte + + + StaticLibrary + false + v141 + true + MultiByte + + + StaticLibrary + true + v141 + MultiByte + + + StaticLibrary + false + v141 + true + MultiByte + + + + + + + + + + + + + + + + + + + + + $(SolutionDir)..\..\Build + + + $(SolutionDir)..\..\Build + + + $(SolutionDir)..\..\Build + + + $(SolutionDir)..\..\Build + + + + Level3 + Disabled + true + true + + + + + Level3 + Disabled + true + true + + + + + Level3 + MaxSpeed + true + true + true + true + + + true + true + + + + + Level3 + MaxSpeed + true + true + true + true + + + true + true + + + + + + + + + + + + + \ No newline at end of file diff --git a/Projects/VisualStudio/glad/glad.vcxproj.filters b/Projects/VisualStudio/glad/glad.vcxproj.filters new file mode 100644 index 0000000..14ceb86 --- /dev/null +++ b/Projects/VisualStudio/glad/glad.vcxproj.filters @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/Projects/VisualStudio/glad/glad.vcxproj.user b/Projects/VisualStudio/glad/glad.vcxproj.user new file mode 100644 index 0000000..be25078 --- /dev/null +++ b/Projects/VisualStudio/glad/glad.vcxproj.user @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/Projects/VisualStudio/lua51/lua51.vcxproj b/Projects/VisualStudio/lua51/lua51.vcxproj new file mode 100644 index 0000000..99605c6 --- /dev/null +++ b/Projects/VisualStudio/lua51/lua51.vcxproj @@ -0,0 +1,188 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 15.0 + {AD09415F-4BF9-4FCE-901F-7AB22D429CFC} + lua51 + 10.0.17763.0 + + + + Application + true + v141 + MultiByte + + + Application + false + v141 + true + MultiByte + + + Application + true + v141 + MultiByte + + + Application + false + v141 + true + MultiByte + + + + + + + + + + + + + + + + + + + + + + + Level3 + Disabled + true + true + + + Console + + + + + Level3 + Disabled + true + true + + + Console + + + + + Level3 + MaxSpeed + true + true + true + true + + + Console + true + true + + + + + Level3 + MaxSpeed + true + true + true + true + + + Console + true + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Projects/VisualStudio/lua51/lua51.vcxproj.filters b/Projects/VisualStudio/lua51/lua51.vcxproj.filters new file mode 100644 index 0000000..0e09431 --- /dev/null +++ b/Projects/VisualStudio/lua51/lua51.vcxproj.filters @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Projects/VisualStudio/lua51/lua51.vcxproj.user b/Projects/VisualStudio/lua51/lua51.vcxproj.user new file mode 100644 index 0000000..be25078 --- /dev/null +++ b/Projects/VisualStudio/lua51/lua51.vcxproj.user @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/Projects/VisualStudio/stb/stb.vcxproj b/Projects/VisualStudio/stb/stb.vcxproj new file mode 100644 index 0000000..cca610e --- /dev/null +++ b/Projects/VisualStudio/stb/stb.vcxproj @@ -0,0 +1,135 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 15.0 + {BFAA8A26-DE6F-4B71-8851-3FF3CF0C8B9F} + stb + 10.0.17763.0 + + + + Application + true + v141 + MultiByte + + + Application + false + v141 + true + MultiByte + + + Application + true + v141 + MultiByte + + + Application + false + v141 + true + MultiByte + + + + + + + + + + + + + + + + + + + + + + + Level3 + Disabled + true + true + + + Console + + + + + Level3 + Disabled + true + true + + + Console + + + + + Level3 + MaxSpeed + true + true + true + true + + + Console + true + true + + + + + Level3 + MaxSpeed + true + true + true + true + + + Console + true + true + + + + + + + + + + + + + \ No newline at end of file diff --git a/Projects/VisualStudio/stb/stb.vcxproj.filters b/Projects/VisualStudio/stb/stb.vcxproj.filters new file mode 100644 index 0000000..0926d7a --- /dev/null +++ b/Projects/VisualStudio/stb/stb.vcxproj.filters @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/Projects/VisualStudio/stb/stb.vcxproj.user b/Projects/VisualStudio/stb/stb.vcxproj.user new file mode 100644 index 0000000..be25078 --- /dev/null +++ b/Projects/VisualStudio/stb/stb.vcxproj.user @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/Projects/VisualStudio/zlib/zlib.vcxproj b/Projects/VisualStudio/zlib/zlib.vcxproj new file mode 100644 index 0000000..f4f0b38 --- /dev/null +++ b/Projects/VisualStudio/zlib/zlib.vcxproj @@ -0,0 +1,122 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 15.0 + {49F29C84-8A46-4421-9F93-CA96A9292716} + zlib + 10.0.17763.0 + + + + Application + true + v141 + MultiByte + + + Application + false + v141 + true + MultiByte + + + Application + true + v141 + MultiByte + + + Application + false + v141 + true + MultiByte + + + + + + + + + + + + + + + + + + + + + + + Level3 + Disabled + true + true + + + + + Level3 + Disabled + true + true + + + + + Level3 + MaxSpeed + true + true + true + true + + + true + true + + + + + Level3 + MaxSpeed + true + true + true + true + + + true + true + + + + + + + + \ No newline at end of file diff --git a/Projects/VisualStudio/zlib/zlib.vcxproj.filters b/Projects/VisualStudio/zlib/zlib.vcxproj.filters new file mode 100644 index 0000000..3c6f4fd --- /dev/null +++ b/Projects/VisualStudio/zlib/zlib.vcxproj.filters @@ -0,0 +1,17 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hh;hpp;hxx;hm;inl;inc;ipp;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms + + + \ No newline at end of file diff --git a/Projects/VisualStudio/zlib/zlib.vcxproj.user b/Projects/VisualStudio/zlib/zlib.vcxproj.user new file mode 100644 index 0000000..be25078 --- /dev/null +++ b/Projects/VisualStudio/zlib/zlib.vcxproj.user @@ -0,0 +1,4 @@ + + + + \ No newline at end of file -- cgit v1.1-26-g67d0