From f889c9c20fc09f26eb8a70674c1d60181835c38a Mon Sep 17 00:00:00 2001 From: chai Date: Thu, 25 Oct 2018 00:50:35 +0800 Subject: =?UTF-8?q?*=E4=BF=AE=E6=94=B9=E9=A1=B9=E7=9B=AE=E7=BB=93=E6=9E=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- build/vc++/3rdparty/GLee/GLee.vcxproj | 137 +++++++++++++++++++++ build/vc++/3rdparty/GLee/GLee.vcxproj.filters | 18 +++ build/vc++/3rdparty/GLee/GLee.vcxproj.user | 4 + build/vc++/3rdparty/ogl2d/ogl2d.vcxproj | 123 +++++++++++++++++++ build/vc++/3rdparty/ogl2d/ogl2d.vcxproj.filters | 13 ++ build/vc++/3rdparty/ogl2d/ogl2d.vcxproj.user | 4 + build/vc++/3rdparty/smount/smount.vcxproj | 138 ++++++++++++++++++++++ build/vc++/3rdparty/smount/smount.vcxproj.filters | 21 ++++ build/vc++/3rdparty/smount/smount.vcxproj.user | 4 + build/vc++/3rdparty/stb/stb.vcxproj | 138 ++++++++++++++++++++++ build/vc++/3rdparty/stb/stb.vcxproj.filters | 21 ++++ build/vc++/3rdparty/stb/stb.vcxproj.user | 4 + build/vc++/3rdparty/tekcos/tekcos.vcxproj | 137 +++++++++++++++++++++ build/vc++/3rdparty/tekcos/tekcos.vcxproj.filters | 18 +++ build/vc++/3rdparty/tekcos/tekcos.vcxproj.user | 4 + build/vc++/3rdparty/wav/wav.vcxproj | 137 +++++++++++++++++++++ build/vc++/3rdparty/wav/wav.vcxproj.filters | 18 +++ build/vc++/3rdparty/wav/wav.vcxproj.user | 4 + 18 files changed, 943 insertions(+) create mode 100644 build/vc++/3rdparty/GLee/GLee.vcxproj create mode 100644 build/vc++/3rdparty/GLee/GLee.vcxproj.filters create mode 100644 build/vc++/3rdparty/GLee/GLee.vcxproj.user create mode 100644 build/vc++/3rdparty/ogl2d/ogl2d.vcxproj create mode 100644 build/vc++/3rdparty/ogl2d/ogl2d.vcxproj.filters create mode 100644 build/vc++/3rdparty/ogl2d/ogl2d.vcxproj.user create mode 100644 build/vc++/3rdparty/smount/smount.vcxproj create mode 100644 build/vc++/3rdparty/smount/smount.vcxproj.filters create mode 100644 build/vc++/3rdparty/smount/smount.vcxproj.user create mode 100644 build/vc++/3rdparty/stb/stb.vcxproj create mode 100644 build/vc++/3rdparty/stb/stb.vcxproj.filters create mode 100644 build/vc++/3rdparty/stb/stb.vcxproj.user create mode 100644 build/vc++/3rdparty/tekcos/tekcos.vcxproj create mode 100644 build/vc++/3rdparty/tekcos/tekcos.vcxproj.filters create mode 100644 build/vc++/3rdparty/tekcos/tekcos.vcxproj.user create mode 100644 build/vc++/3rdparty/wav/wav.vcxproj create mode 100644 build/vc++/3rdparty/wav/wav.vcxproj.filters create mode 100644 build/vc++/3rdparty/wav/wav.vcxproj.user (limited to 'build/vc++/3rdparty') diff --git a/build/vc++/3rdparty/GLee/GLee.vcxproj b/build/vc++/3rdparty/GLee/GLee.vcxproj new file mode 100644 index 0000000..007dc38 --- /dev/null +++ b/build/vc++/3rdparty/GLee/GLee.vcxproj @@ -0,0 +1,137 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 15.0 + {8828F6B1-F167-4BC9-B7C7-7CC34CDDEE8A} + GLee + 8.1 + + + + StaticLibrary + true + v141 + MultiByte + + + StaticLibrary + false + v141 + true + MultiByte + + + Application + true + v141 + MultiByte + + + Application + false + v141 + true + MultiByte + + + + + + + + + + + + + + + + + + + + + $(SolutionDir)..\..\bin + + + $(SolutionDir)..\..\bin + + + + Level3 + MinSpace + true + false + _CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + CompileAsCpp + Size + + + + + Level3 + Disabled + true + true + + + + + Level3 + MinSpace + true + true + true + false + _CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + CompileAsCpp + Size + + + true + true + + + + + Level3 + MaxSpeed + true + true + true + true + + + true + true + + + + + + + + + + + + \ No newline at end of file diff --git a/build/vc++/3rdparty/GLee/GLee.vcxproj.filters b/build/vc++/3rdparty/GLee/GLee.vcxproj.filters new file mode 100644 index 0000000..2822148 --- /dev/null +++ b/build/vc++/3rdparty/GLee/GLee.vcxproj.filters @@ -0,0 +1,18 @@ + + + + + {eebe1ebb-f43f-4b31-9c61-4cd44565461e} + + + + + source + + + + + source + + + \ No newline at end of file diff --git a/build/vc++/3rdparty/GLee/GLee.vcxproj.user b/build/vc++/3rdparty/GLee/GLee.vcxproj.user new file mode 100644 index 0000000..be25078 --- /dev/null +++ b/build/vc++/3rdparty/GLee/GLee.vcxproj.user @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/build/vc++/3rdparty/ogl2d/ogl2d.vcxproj b/build/vc++/3rdparty/ogl2d/ogl2d.vcxproj new file mode 100644 index 0000000..546afbb --- /dev/null +++ b/build/vc++/3rdparty/ogl2d/ogl2d.vcxproj @@ -0,0 +1,123 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 15.0 + {D17F6928-AF98-4ED9-A2B9-1DC0B2765D4F} + ogl2d + 10.0.17134.0 + + + + StaticLibrary + true + v141 + MultiByte + + + StaticLibrary + 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/build/vc++/3rdparty/ogl2d/ogl2d.vcxproj.filters b/build/vc++/3rdparty/ogl2d/ogl2d.vcxproj.filters new file mode 100644 index 0000000..74f0b2e --- /dev/null +++ b/build/vc++/3rdparty/ogl2d/ogl2d.vcxproj.filters @@ -0,0 +1,13 @@ + + + + + {9eb6b640-ac80-4c15-b76c-2a7c5536ca5c} + + + + + source + + + \ No newline at end of file diff --git a/build/vc++/3rdparty/ogl2d/ogl2d.vcxproj.user b/build/vc++/3rdparty/ogl2d/ogl2d.vcxproj.user new file mode 100644 index 0000000..be25078 --- /dev/null +++ b/build/vc++/3rdparty/ogl2d/ogl2d.vcxproj.user @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/build/vc++/3rdparty/smount/smount.vcxproj b/build/vc++/3rdparty/smount/smount.vcxproj new file mode 100644 index 0000000..c174850 --- /dev/null +++ b/build/vc++/3rdparty/smount/smount.vcxproj @@ -0,0 +1,138 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 15.0 + {3FC3E8B7-380E-41E6-91FF-82FA5E622D29} + smount + 8.1 + + + + StaticLibrary + true + v141 + MultiByte + + + StaticLibrary + false + v141 + true + MultiByte + + + Application + true + v141 + MultiByte + + + Application + false + v141 + true + MultiByte + + + + + + + + + + + + + + + + + + + + + $(SolutionDir)..\..\bin + + + $(SolutionDir)..\..\bin + + + + Level3 + MinSpace + true + false + _CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + CompileAsCpp + Size + + + + + Level3 + Disabled + true + true + + + + + Level3 + MinSpace + true + true + true + false + _CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + CompileAsCpp + Size + + + true + true + + + + + Level3 + MaxSpeed + true + true + true + true + + + true + true + + + + + + + + + + + + + \ No newline at end of file diff --git a/build/vc++/3rdparty/smount/smount.vcxproj.filters b/build/vc++/3rdparty/smount/smount.vcxproj.filters new file mode 100644 index 0000000..ad2b2c5 --- /dev/null +++ b/build/vc++/3rdparty/smount/smount.vcxproj.filters @@ -0,0 +1,21 @@ + + + + + {65960c95-e385-4c08-8b67-a7158e39289f} + + + + + source + + + source + + + + + source + + + \ No newline at end of file diff --git a/build/vc++/3rdparty/smount/smount.vcxproj.user b/build/vc++/3rdparty/smount/smount.vcxproj.user new file mode 100644 index 0000000..be25078 --- /dev/null +++ b/build/vc++/3rdparty/smount/smount.vcxproj.user @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/build/vc++/3rdparty/stb/stb.vcxproj b/build/vc++/3rdparty/stb/stb.vcxproj new file mode 100644 index 0000000..6cb9b3f --- /dev/null +++ b/build/vc++/3rdparty/stb/stb.vcxproj @@ -0,0 +1,138 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 15.0 + {E9A7ECC9-1437-45A8-B970-E9E75BD1F8E0} + stb + 8.1 + + + + StaticLibrary + true + v141 + MultiByte + + + StaticLibrary + false + v141 + true + MultiByte + + + Application + true + v141 + MultiByte + + + Application + false + v141 + true + MultiByte + + + + + + + + + + + + + + + + + + + + + $(SolutionDir)..\..\bin + + + $(SolutionDir)..\..\bin + + + + Level3 + MinSpace + true + false + _CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + CompileAsCpp + Size + + + + + Level3 + Disabled + true + true + + + + + Level3 + MinSpace + true + true + true + false + _CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + CompileAsCpp + Size + + + true + true + + + + + Level3 + MaxSpeed + true + true + true + true + + + true + true + + + + + + + + + + + + + \ No newline at end of file diff --git a/build/vc++/3rdparty/stb/stb.vcxproj.filters b/build/vc++/3rdparty/stb/stb.vcxproj.filters new file mode 100644 index 0000000..dba3009 --- /dev/null +++ b/build/vc++/3rdparty/stb/stb.vcxproj.filters @@ -0,0 +1,21 @@ + + + + + {2704930f-d8dd-4b99-8e27-6b5d8fdab710} + + + + + source + + + source + + + + + source + + + \ No newline at end of file diff --git a/build/vc++/3rdparty/stb/stb.vcxproj.user b/build/vc++/3rdparty/stb/stb.vcxproj.user new file mode 100644 index 0000000..be25078 --- /dev/null +++ b/build/vc++/3rdparty/stb/stb.vcxproj.user @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/build/vc++/3rdparty/tekcos/tekcos.vcxproj b/build/vc++/3rdparty/tekcos/tekcos.vcxproj new file mode 100644 index 0000000..3148e63 --- /dev/null +++ b/build/vc++/3rdparty/tekcos/tekcos.vcxproj @@ -0,0 +1,137 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 15.0 + {B88DC691-FE8A-4C5E-8D57-EBCC6B13C744} + tekcos + 8.1 + + + + StaticLibrary + true + v141 + MultiByte + + + StaticLibrary + false + v141 + true + MultiByte + + + Application + true + v141 + MultiByte + + + Application + false + v141 + true + MultiByte + + + + + + + + + + + + + + + + + + + + + $(SolutionDir)..\..\bin + + + $(SolutionDir)..\..\bin + + + + Level3 + MinSpace + true + false + _CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + CompileAsCpp + Size + + + + + Level3 + Disabled + true + true + + + + + Level3 + MinSpace + true + true + true + false + _CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + CompileAsCpp + Size + + + true + true + + + + + Level3 + MaxSpeed + true + true + true + true + + + true + true + + + + + + + + + + + + \ No newline at end of file diff --git a/build/vc++/3rdparty/tekcos/tekcos.vcxproj.filters b/build/vc++/3rdparty/tekcos/tekcos.vcxproj.filters new file mode 100644 index 0000000..cccacab --- /dev/null +++ b/build/vc++/3rdparty/tekcos/tekcos.vcxproj.filters @@ -0,0 +1,18 @@ + + + + + {2cee3ae8-b50d-4592-8545-5e489b1e3f2a} + + + + + source + + + + + source + + + \ No newline at end of file diff --git a/build/vc++/3rdparty/tekcos/tekcos.vcxproj.user b/build/vc++/3rdparty/tekcos/tekcos.vcxproj.user new file mode 100644 index 0000000..be25078 --- /dev/null +++ b/build/vc++/3rdparty/tekcos/tekcos.vcxproj.user @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/build/vc++/3rdparty/wav/wav.vcxproj b/build/vc++/3rdparty/wav/wav.vcxproj new file mode 100644 index 0000000..bba56a1 --- /dev/null +++ b/build/vc++/3rdparty/wav/wav.vcxproj @@ -0,0 +1,137 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 15.0 + {9A0EAD3F-5A23-41C8-8FFD-8F6B71F43342} + wav + 8.1 + + + + StaticLibrary + true + v141 + MultiByte + + + StaticLibrary + false + v141 + true + MultiByte + + + Application + true + v141 + MultiByte + + + Application + false + v141 + true + MultiByte + + + + + + + + + + + + + + + + + + + + + $(SolutionDir)..\..\bin + + + $(SolutionDir)..\..\bin + + + + Level3 + MinSpace + true + false + _CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + CompileAsCpp + Size + + + + + Level3 + Disabled + true + true + + + + + Level3 + MinSpace + true + true + true + false + _CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + CompileAsCpp + Size + + + true + true + + + + + Level3 + MaxSpeed + true + true + true + true + + + true + true + + + + + + + + + + + + \ No newline at end of file diff --git a/build/vc++/3rdparty/wav/wav.vcxproj.filters b/build/vc++/3rdparty/wav/wav.vcxproj.filters new file mode 100644 index 0000000..ac7d2a6 --- /dev/null +++ b/build/vc++/3rdparty/wav/wav.vcxproj.filters @@ -0,0 +1,18 @@ + + + + + {b990a338-a227-4467-8414-90e49768bf59} + + + + + source + + + + + source + + + \ No newline at end of file diff --git a/build/vc++/3rdparty/wav/wav.vcxproj.user b/build/vc++/3rdparty/wav/wav.vcxproj.user new file mode 100644 index 0000000..be25078 --- /dev/null +++ b/build/vc++/3rdparty/wav/wav.vcxproj.user @@ -0,0 +1,4 @@ + + + + \ No newline at end of file -- cgit v1.1-26-g67d0