From 0a5876576ca51ebb3e63e5c1354309f1d502e794 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E6=99=93=E8=88=AA?= <1210603696@qq.com> Date: Tue, 16 Sep 2014 08:26:02 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E4=BB=A3=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- TinySTL.sln | 22 +++++++++ TinySTL/TinySTL.vcxproj | 84 +++++++++++++++++++++++++++++++++ TinySTL/TinySTL.vcxproj.filters | 22 +++++++++ TinySTL/main.cpp | 10 ++++ 4 files changed, 138 insertions(+) create mode 100644 TinySTL.sln create mode 100644 TinySTL/TinySTL.vcxproj create mode 100644 TinySTL/TinySTL.vcxproj.filters create mode 100644 TinySTL/main.cpp diff --git a/TinySTL.sln b/TinySTL.sln new file mode 100644 index 0000000..3190ad8 --- /dev/null +++ b/TinySTL.sln @@ -0,0 +1,22 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Express 2013 for Windows Desktop +VisualStudioVersion = 12.0.21005.1 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TinySTL", "TinySTL\TinySTL.vcxproj", "{8B728502-8B31-4983-B9C3-13D8CCA52181}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Win32 = Debug|Win32 + Release|Win32 = Release|Win32 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {8B728502-8B31-4983-B9C3-13D8CCA52181}.Debug|Win32.ActiveCfg = Debug|Win32 + {8B728502-8B31-4983-B9C3-13D8CCA52181}.Debug|Win32.Build.0 = Debug|Win32 + {8B728502-8B31-4983-B9C3-13D8CCA52181}.Release|Win32.ActiveCfg = Release|Win32 + {8B728502-8B31-4983-B9C3-13D8CCA52181}.Release|Win32.Build.0 = Release|Win32 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/TinySTL/TinySTL.vcxproj b/TinySTL/TinySTL.vcxproj new file mode 100644 index 0000000..0a45209 --- /dev/null +++ b/TinySTL/TinySTL.vcxproj @@ -0,0 +1,84 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + + {8B728502-8B31-4983-B9C3-13D8CCA52181} + Win32Proj + TinySTL + + + + Application + true + v120 + Unicode + + + Application + false + v120 + true + Unicode + + + + + + + + + + + + + true + + + false + + + + + + Level3 + Disabled + WIN32;_DEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) + + + Console + true + + + + + Level3 + + + MaxSpeed + true + true + WIN32;NDEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) + + + Console + true + true + true + + + + + + + + + \ No newline at end of file diff --git a/TinySTL/TinySTL.vcxproj.filters b/TinySTL/TinySTL.vcxproj.filters new file mode 100644 index 0000000..333f5a9 --- /dev/null +++ b/TinySTL/TinySTL.vcxproj.filters @@ -0,0 +1,22 @@ + + + + + {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;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/TinySTL/main.cpp b/TinySTL/main.cpp new file mode 100644 index 0000000..aafe121 --- /dev/null +++ b/TinySTL/main.cpp @@ -0,0 +1,10 @@ +#include + +using namespace std; + +int main(){ + cout << "Holle World" << endl; + + system("pause"); + return 0; +} \ No newline at end of file