From c49fee18245fef865283fe29e20c67c4bc509423 Mon Sep 17 00:00:00 2001 From: GuilhermeWerner Date: Fri, 8 Jan 2021 16:06:19 -0300 Subject: [PATCH] Create VisualStudio Project --- OpenGL.sln | 31 +++++++ OpenGL/OpenGL.vcxproj | 147 ++++++++++++++++++++++++++++++++++ OpenGL/OpenGL.vcxproj.filters | 22 +++++ OpenGL/Source/Application.cpp | 7 ++ 4 files changed, 207 insertions(+) create mode 100644 OpenGL.sln create mode 100644 OpenGL/OpenGL.vcxproj create mode 100644 OpenGL/OpenGL.vcxproj.filters create mode 100644 OpenGL/Source/Application.cpp diff --git a/OpenGL.sln b/OpenGL.sln new file mode 100644 index 0000000..8aab5ea --- /dev/null +++ b/OpenGL.sln @@ -0,0 +1,31 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.30804.86 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "OpenGL", "OpenGL\OpenGL.vcxproj", "{7EFED3C4-B667-4057-BEBD-36062917ABEF}" +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 + {7EFED3C4-B667-4057-BEBD-36062917ABEF}.Debug|x64.ActiveCfg = Debug|x64 + {7EFED3C4-B667-4057-BEBD-36062917ABEF}.Debug|x64.Build.0 = Debug|x64 + {7EFED3C4-B667-4057-BEBD-36062917ABEF}.Debug|x86.ActiveCfg = Debug|Win32 + {7EFED3C4-B667-4057-BEBD-36062917ABEF}.Debug|x86.Build.0 = Debug|Win32 + {7EFED3C4-B667-4057-BEBD-36062917ABEF}.Release|x64.ActiveCfg = Release|x64 + {7EFED3C4-B667-4057-BEBD-36062917ABEF}.Release|x64.Build.0 = Release|x64 + {7EFED3C4-B667-4057-BEBD-36062917ABEF}.Release|x86.ActiveCfg = Release|Win32 + {7EFED3C4-B667-4057-BEBD-36062917ABEF}.Release|x86.Build.0 = Release|Win32 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {4BE6B73D-EE63-4369-A01F-B3148C5EA9FC} + EndGlobalSection +EndGlobal diff --git a/OpenGL/OpenGL.vcxproj b/OpenGL/OpenGL.vcxproj new file mode 100644 index 0000000..ac542e3 --- /dev/null +++ b/OpenGL/OpenGL.vcxproj @@ -0,0 +1,147 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 16.0 + Win32Proj + {7efed3c4-b667-4057-bebd-36062917abef} + OpenGL + 10.0 + + + + Application + true + v142 + Unicode + + + Application + false + v142 + true + Unicode + + + Application + true + v142 + Unicode + + + Application + false + v142 + true + Unicode + + + + + + + + + + + + + + + + + + + + + true + + + false + + + true + + + false + + + + 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/OpenGL/OpenGL.vcxproj.filters b/OpenGL/OpenGL.vcxproj.filters new file mode 100644 index 0000000..1d35cf5 --- /dev/null +++ b/OpenGL/OpenGL.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/OpenGL/Source/Application.cpp b/OpenGL/Source/Application.cpp new file mode 100644 index 0000000..3d2d011 --- /dev/null +++ b/OpenGL/Source/Application.cpp @@ -0,0 +1,7 @@ +#include + +int main() +{ + std::cout << "OpenGL" << std::endl; + std::cin.get(); +}