From 4ae052ee18189e4ef552ee3ceb033ecdad483329 Mon Sep 17 00:00:00 2001 From: Grayson Riffe Date: Tue, 29 Aug 2023 14:34:47 -0500 Subject: [PATCH] Add project structure --- .gitignore | 2 + WinChat/WinChat.vcxproj | 92 +++++++++++++++++++++++++++++++++ WinChat/WinChat.vcxproj.filters | 22 ++++++++ WinChat/WinChat.vcxproj.user | 14 +++++ WinChat/src/main.cpp | 8 +++ WinChatSln.sln | 25 +++++++++ 6 files changed, 163 insertions(+) create mode 100644 .gitignore create mode 100644 WinChat/WinChat.vcxproj create mode 100644 WinChat/WinChat.vcxproj.filters create mode 100644 WinChat/WinChat.vcxproj.user create mode 100644 WinChat/src/main.cpp create mode 100644 WinChatSln.sln diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..9a44da1 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +.vs/ +build/ diff --git a/WinChat/WinChat.vcxproj b/WinChat/WinChat.vcxproj new file mode 100644 index 0000000..75cbe83 --- /dev/null +++ b/WinChat/WinChat.vcxproj @@ -0,0 +1,92 @@ + + + + + Debug + x64 + + + Release + x64 + + + + 17.0 + Win32Proj + {807f7b0f-884d-4a96-8a2b-57cd89232f61} + WinChat + 10.0 + + + + Application + true + v143 + Unicode + + + Application + false + v143 + true + Unicode + + + + + + + + + + + + + + + $(ProjectDir)build\bin\$(Configuration)\ + $(ProjectDir)build\int\$(Configuration)\ + + + $(ProjectDir)build\bin\$(Configuration)\ + $(ProjectDir)build\int\$(Configuration)\ + + + + Level3 + true + _DEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + stdcpp20 + true + + + Console + true + + + + + Level3 + true + true + true + NDEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + stdcpp20 + true + + + Console + true + true + true + + + + + + + + + \ No newline at end of file diff --git a/WinChat/WinChat.vcxproj.filters b/WinChat/WinChat.vcxproj.filters new file mode 100644 index 0000000..a12df58 --- /dev/null +++ b/WinChat/WinChat.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 + + + + + Source Files + + + \ No newline at end of file diff --git a/WinChat/WinChat.vcxproj.user b/WinChat/WinChat.vcxproj.user new file mode 100644 index 0000000..2c303bf --- /dev/null +++ b/WinChat/WinChat.vcxproj.user @@ -0,0 +1,14 @@ + + + + true + + + $(OutDir) + WindowsLocalDebugger + + + $(OutDir) + WindowsLocalDebugger + + \ No newline at end of file diff --git a/WinChat/src/main.cpp b/WinChat/src/main.cpp new file mode 100644 index 0000000..4182b9e --- /dev/null +++ b/WinChat/src/main.cpp @@ -0,0 +1,8 @@ +#include + +int main(int argc, char* argv[]) { + std::printf("WinChat\n"); + + std::cin.get(); + return EXIT_SUCCESS; +} \ No newline at end of file diff --git a/WinChatSln.sln b/WinChatSln.sln new file mode 100644 index 0000000..dad62f8 --- /dev/null +++ b/WinChatSln.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.7.34024.191 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "WinChat", "WinChat\WinChat.vcxproj", "{807F7B0F-884D-4A96-8A2B-57CD89232F61}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|x64 = Debug|x64 + Release|x64 = Release|x64 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {807F7B0F-884D-4A96-8A2B-57CD89232F61}.Debug|x64.ActiveCfg = Debug|x64 + {807F7B0F-884D-4A96-8A2B-57CD89232F61}.Debug|x64.Build.0 = Debug|x64 + {807F7B0F-884D-4A96-8A2B-57CD89232F61}.Release|x64.ActiveCfg = Release|x64 + {807F7B0F-884D-4A96-8A2B-57CD89232F61}.Release|x64.Build.0 = Release|x64 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {1E26CF85-CF33-4C67-AFFE-1CF6C8612DEA} + EndGlobalSection +EndGlobal