diff --git a/GlosSI.sln b/GlosSI.sln new file mode 100644 index 0000000..3defd40 --- /dev/null +++ b/GlosSI.sln @@ -0,0 +1,31 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.31729.503 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "GlosSITarget", "GlosSITarget\GlosSITarget.vcxproj", "{076E263E-0687-4435-836E-8F4EF6668843}" +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 + {076E263E-0687-4435-836E-8F4EF6668843}.Debug|x64.ActiveCfg = Debug|x64 + {076E263E-0687-4435-836E-8F4EF6668843}.Debug|x64.Build.0 = Debug|x64 + {076E263E-0687-4435-836E-8F4EF6668843}.Debug|x86.ActiveCfg = Debug|Win32 + {076E263E-0687-4435-836E-8F4EF6668843}.Debug|x86.Build.0 = Debug|Win32 + {076E263E-0687-4435-836E-8F4EF6668843}.Release|x64.ActiveCfg = Release|x64 + {076E263E-0687-4435-836E-8F4EF6668843}.Release|x64.Build.0 = Release|x64 + {076E263E-0687-4435-836E-8F4EF6668843}.Release|x86.ActiveCfg = Release|Win32 + {076E263E-0687-4435-836E-8F4EF6668843}.Release|x86.Build.0 = Release|Win32 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {789386B6-7D1E-4F9C-BF2E-9B5EDC3BB7C8} + EndGlobalSection +EndGlobal diff --git a/GlosSITarget/GlosSITarget.vcxproj b/GlosSITarget/GlosSITarget.vcxproj new file mode 100644 index 0000000..f4f3760 --- /dev/null +++ b/GlosSITarget/GlosSITarget.vcxproj @@ -0,0 +1,151 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 16.0 + Win32Proj + {076e263e-0687-4435-836e-8f4ef6668843} + GlosSITarget + 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/GlosSITarget/GlosSITarget.vcxproj.filters b/GlosSITarget/GlosSITarget.vcxproj.filters new file mode 100644 index 0000000..46eb0ea --- /dev/null +++ b/GlosSITarget/GlosSITarget.vcxproj.filters @@ -0,0 +1,30 @@ + + + + + {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 + + + Source Files + + + + + Header Files + + + \ No newline at end of file diff --git a/GlosSITarget/SteamTarget.cpp b/GlosSITarget/SteamTarget.cpp new file mode 100644 index 0000000..3ab4755 --- /dev/null +++ b/GlosSITarget/SteamTarget.cpp @@ -0,0 +1,11 @@ +#include "SteamTarget.h" + +#include + +SteamTarget::SteamTarget(int argc, char* argv[]) { + +} + +int SteamTarget::run() { + return 1; +} \ No newline at end of file diff --git a/GlosSITarget/SteamTarget.h b/GlosSITarget/SteamTarget.h new file mode 100644 index 0000000..22574df --- /dev/null +++ b/GlosSITarget/SteamTarget.h @@ -0,0 +1,8 @@ +#pragma once +class SteamTarget +{ +public: + explicit SteamTarget(int argc, char* argv[]); + int run(); +}; + diff --git a/GlosSITarget/main.cpp b/GlosSITarget/main.cpp new file mode 100644 index 0000000..1471764 --- /dev/null +++ b/GlosSITarget/main.cpp @@ -0,0 +1,37 @@ +/* +Copyright 2021 Peter Repukat - FlatspotSoftware + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ +#ifdef _WIN32 +#include +#endif + +#include "SteamTarget.h" + +//int CALLBACK WinMain( +// _In_ HINSTANCE hInstance, +// _In_ HINSTANCE hPrevInstance, +// _In_ LPSTR lpCmdLine, +// _In_ int nCmdShow +//) +//{ +// SteamTarget target(__argc, __argv); +// target.init(); +// return SteamTarget::exec(); +//} + +int main(int argc, char* argv[]) { + SteamTarget target(argc, argv); + return target.run(); +} \ No newline at end of file