commit cb80b044065b2198ba1e027c9a2c69d5b74d7ea3 Author: lxbhahaha <32586299+lxbhahaha@users.noreply.github.com> Date: Sun Sep 29 16:24:38 2024 +0800 Init diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..96e57d0 --- /dev/null +++ b/.gitignore @@ -0,0 +1,35 @@ +# Prerequisites +*.d + +# Compiled Object files +*.slo +*.lo +*.o +*.obj + +# Precompiled Headers +*.gch +*.pch + +# Compiled Dynamic libraries +*.so +*.dylib +*.dll + +# Fortran module files +*.mod +*.smod + +# Compiled Static libraries +*.lai +*.la +*.a +*.lib + +# Executables +*.exe +*.out +*.app + +/.vs/ +/x64/ \ No newline at end of file diff --git a/CPP_Learn.sln b/CPP_Learn.sln new file mode 100644 index 0000000..8e532fc --- /dev/null +++ b/CPP_Learn.sln @@ -0,0 +1,31 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.4.33213.308 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "CPP_Learn", "CPP_Learn\CPP_Learn.vcxproj", "{CCF83B61-BD23-44C9-B78E-6BA019F5344F}" +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 + {CCF83B61-BD23-44C9-B78E-6BA019F5344F}.Debug|x64.ActiveCfg = Debug|x64 + {CCF83B61-BD23-44C9-B78E-6BA019F5344F}.Debug|x64.Build.0 = Debug|x64 + {CCF83B61-BD23-44C9-B78E-6BA019F5344F}.Debug|x86.ActiveCfg = Debug|Win32 + {CCF83B61-BD23-44C9-B78E-6BA019F5344F}.Debug|x86.Build.0 = Debug|Win32 + {CCF83B61-BD23-44C9-B78E-6BA019F5344F}.Release|x64.ActiveCfg = Release|x64 + {CCF83B61-BD23-44C9-B78E-6BA019F5344F}.Release|x64.Build.0 = Release|x64 + {CCF83B61-BD23-44C9-B78E-6BA019F5344F}.Release|x86.ActiveCfg = Release|Win32 + {CCF83B61-BD23-44C9-B78E-6BA019F5344F}.Release|x86.Build.0 = Release|Win32 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {E388BBDB-27C6-4398-8676-206CD700BEC3} + EndGlobalSection +EndGlobal diff --git a/CPP_Learn/CPP_Learn.cpp b/CPP_Learn/CPP_Learn.cpp new file mode 100644 index 0000000..972d1cd --- /dev/null +++ b/CPP_Learn/CPP_Learn.cpp @@ -0,0 +1,6 @@ +#include + +int main() +{ + std::cout << "Hello World!\n"; +} \ No newline at end of file diff --git a/CPP_Learn/CPP_Learn.vcxproj b/CPP_Learn/CPP_Learn.vcxproj new file mode 100644 index 0000000..0a1010e --- /dev/null +++ b/CPP_Learn/CPP_Learn.vcxproj @@ -0,0 +1,135 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 16.0 + Win32Proj + {ccf83b61-bd23-44c9-b78e-6ba019f5344f} + CPPLearn + 10.0 + + + + Application + true + v143 + Unicode + + + Application + false + v143 + true + Unicode + + + Application + true + v143 + Unicode + + + Application + false + v143 + true + Unicode + + + + + + + + + + + + + + + + + + + + + + Level3 + true + WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + + + Console + true + + + + + Level3 + true + true + true + WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + + + Console + true + true + true + + + + + Level3 + true + _DEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + + + Console + true + + + + + Level3 + true + true + true + NDEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + + + Console + true + true + true + + + + + + + + + \ No newline at end of file diff --git a/CPP_Learn/CPP_Learn.vcxproj.filters b/CPP_Learn/CPP_Learn.vcxproj.filters new file mode 100644 index 0000000..4ac21f0 --- /dev/null +++ b/CPP_Learn/CPP_Learn.vcxproj.filters @@ -0,0 +1,22 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;c++;cppm;ixx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hh;hpp;hxx;h++;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/CPP_Learn/CPP_Learn.vcxproj.user b/CPP_Learn/CPP_Learn.vcxproj.user new file mode 100644 index 0000000..88a5509 --- /dev/null +++ b/CPP_Learn/CPP_Learn.vcxproj.user @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/CPP_Learn/x64/Debug/CPP_Learn.exe.recipe b/CPP_Learn/x64/Debug/CPP_Learn.exe.recipe new file mode 100644 index 0000000..8ceed4f --- /dev/null +++ b/CPP_Learn/x64/Debug/CPP_Learn.exe.recipe @@ -0,0 +1,11 @@ + + + + + E:\22020100011_LXB\Projects\VisualStudio\CPP_Learn\x64\Debug\CPP_Learn.exe + + + + + + \ No newline at end of file diff --git a/CPP_Learn/x64/Debug/CPP_Learn.ilk b/CPP_Learn/x64/Debug/CPP_Learn.ilk new file mode 100644 index 0000000..6e8f09f Binary files /dev/null and b/CPP_Learn/x64/Debug/CPP_Learn.ilk differ diff --git a/CPP_Learn/x64/Debug/CPP_Learn.log b/CPP_Learn/x64/Debug/CPP_Learn.log new file mode 100644 index 0000000..1db99e4 --- /dev/null +++ b/CPP_Learn/x64/Debug/CPP_Learn.log @@ -0,0 +1,2 @@ + CPP_Learn.cpp + CPP_Learn.vcxproj -> E:\22020100011_LXB\Projects\VisualStudio\CPP_Learn\x64\Debug\CPP_Learn.exe diff --git a/CPP_Learn/x64/Debug/CPP_Learn.tlog/CL.command.1.tlog b/CPP_Learn/x64/Debug/CPP_Learn.tlog/CL.command.1.tlog new file mode 100644 index 0000000..d3c17ae Binary files /dev/null and b/CPP_Learn/x64/Debug/CPP_Learn.tlog/CL.command.1.tlog differ diff --git a/CPP_Learn/x64/Debug/CPP_Learn.tlog/CL.read.1.tlog b/CPP_Learn/x64/Debug/CPP_Learn.tlog/CL.read.1.tlog new file mode 100644 index 0000000..d9fc173 Binary files /dev/null and b/CPP_Learn/x64/Debug/CPP_Learn.tlog/CL.read.1.tlog differ diff --git a/CPP_Learn/x64/Debug/CPP_Learn.tlog/CL.write.1.tlog b/CPP_Learn/x64/Debug/CPP_Learn.tlog/CL.write.1.tlog new file mode 100644 index 0000000..a1d418f Binary files /dev/null and b/CPP_Learn/x64/Debug/CPP_Learn.tlog/CL.write.1.tlog differ diff --git a/CPP_Learn/x64/Debug/CPP_Learn.tlog/CPP_Learn.lastbuildstate b/CPP_Learn/x64/Debug/CPP_Learn.tlog/CPP_Learn.lastbuildstate new file mode 100644 index 0000000..7684410 --- /dev/null +++ b/CPP_Learn/x64/Debug/CPP_Learn.tlog/CPP_Learn.lastbuildstate @@ -0,0 +1,2 @@ +PlatformToolSet=v143:VCToolArchitecture=Native64Bit:VCToolsVersion=14.34.31933:TargetPlatformVersion=10.0.22000.0: +Debug|x64|E:\22020100011_LXB\Projects\VisualStudio\CPP_Learn\| diff --git a/CPP_Learn/x64/Debug/CPP_Learn.tlog/link.command.1.tlog b/CPP_Learn/x64/Debug/CPP_Learn.tlog/link.command.1.tlog new file mode 100644 index 0000000..58e0d08 Binary files /dev/null and b/CPP_Learn/x64/Debug/CPP_Learn.tlog/link.command.1.tlog differ diff --git a/CPP_Learn/x64/Debug/CPP_Learn.tlog/link.read.1.tlog b/CPP_Learn/x64/Debug/CPP_Learn.tlog/link.read.1.tlog new file mode 100644 index 0000000..b123ca6 Binary files /dev/null and b/CPP_Learn/x64/Debug/CPP_Learn.tlog/link.read.1.tlog differ diff --git a/CPP_Learn/x64/Debug/CPP_Learn.tlog/link.write.1.tlog b/CPP_Learn/x64/Debug/CPP_Learn.tlog/link.write.1.tlog new file mode 100644 index 0000000..e1ca210 Binary files /dev/null and b/CPP_Learn/x64/Debug/CPP_Learn.tlog/link.write.1.tlog differ diff --git a/CPP_Learn/x64/Debug/vc143.idb b/CPP_Learn/x64/Debug/vc143.idb new file mode 100644 index 0000000..cf27fb0 Binary files /dev/null and b/CPP_Learn/x64/Debug/vc143.idb differ diff --git a/CPP_Learn/x64/Debug/vc143.pdb b/CPP_Learn/x64/Debug/vc143.pdb new file mode 100644 index 0000000..3e388eb Binary files /dev/null and b/CPP_Learn/x64/Debug/vc143.pdb differ