From e2676ed7bd9ae659f0fdace27c8b15ce6743a185 Mon Sep 17 00:00:00 2001 From: "JASON-6700K\\jandersen" Date: Thu, 9 Jul 2020 17:37:39 -0400 Subject: [PATCH] import: visual studio project files --- .gitignore | 7 ++ vcxproj/gsla.sln | 31 +++++++ vcxproj/gsla.vcxproj | 154 +++++++++++++++++++++++++++++++++++ vcxproj/gsla.vcxproj.filters | 35 ++++++++ 4 files changed, 227 insertions(+) create mode 100644 .gitignore create mode 100644 vcxproj/gsla.sln create mode 100644 vcxproj/gsla.vcxproj create mode 100644 vcxproj/gsla.vcxproj.filters diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..6b45cb4 --- /dev/null +++ b/.gitignore @@ -0,0 +1,7 @@ +*.user +*.vpj +*.vpw +*.vpwhist +*.vtg +vcxproj/.vs/ +vcxproj/x64/ diff --git a/vcxproj/gsla.sln b/vcxproj/gsla.sln new file mode 100644 index 0000000..8656bea --- /dev/null +++ b/vcxproj/gsla.sln @@ -0,0 +1,31 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.30225.117 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gsla", "gsla.vcxproj", "{08214015-2B09-4ED2-ACD4-93031A939CF1}" +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 + {08214015-2B09-4ED2-ACD4-93031A939CF1}.Debug|x64.ActiveCfg = Debug|x64 + {08214015-2B09-4ED2-ACD4-93031A939CF1}.Debug|x64.Build.0 = Debug|x64 + {08214015-2B09-4ED2-ACD4-93031A939CF1}.Debug|x86.ActiveCfg = Debug|Win32 + {08214015-2B09-4ED2-ACD4-93031A939CF1}.Debug|x86.Build.0 = Debug|Win32 + {08214015-2B09-4ED2-ACD4-93031A939CF1}.Release|x64.ActiveCfg = Release|x64 + {08214015-2B09-4ED2-ACD4-93031A939CF1}.Release|x64.Build.0 = Release|x64 + {08214015-2B09-4ED2-ACD4-93031A939CF1}.Release|x86.ActiveCfg = Release|Win32 + {08214015-2B09-4ED2-ACD4-93031A939CF1}.Release|x86.Build.0 = Release|Win32 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {922EAE98-7805-4172-A57D-9B441077B035} + EndGlobalSection +EndGlobal diff --git a/vcxproj/gsla.vcxproj b/vcxproj/gsla.vcxproj new file mode 100644 index 0000000..3e0d09f --- /dev/null +++ b/vcxproj/gsla.vcxproj @@ -0,0 +1,154 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 16.0 + Win32Proj + {08214015-2b09-4ed2-acd4-93031a939cf1} + gsla + 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/vcxproj/gsla.vcxproj.filters b/vcxproj/gsla.vcxproj.filters new file mode 100644 index 0000000..3ab00b7 --- /dev/null +++ b/vcxproj/gsla.vcxproj.filters @@ -0,0 +1,35 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;c++;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hh;hpp;hxx;h++;hm;inl;inc;ipp;xsd + + + + + Header Files + + + Header Files + + + Header Files + + + + + Source Files + + + Source Files + + + Source Files + + + \ No newline at end of file