diff --git a/.gitignore b/.gitignore index 5419f3b..1ea7322 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ .idea -build/* \ No newline at end of file +build/* +.vs diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json new file mode 100644 index 0000000..9de7779 --- /dev/null +++ b/.vscode/c_cpp_properties.json @@ -0,0 +1,20 @@ +{ + "configurations": [ + { + "name": "Win32", + "includePath": [ + "${workspaceFolder}/**" + ], + "defines": [ + "_DEBUG", + "UNICODE", + "_UNICODE", + "gen_time" + ], + "windowsSdkVersion": "10.0.19041.0", + "compilerPath": "C:/Users/Ed/scoop/apps/llvm/current/bin/clang++.exe", + "intelliSenseMode": "windows-clang-x64" + } + ], + "version": 4 +} \ No newline at end of file diff --git a/gencpp.sln b/gencpp.sln new file mode 100644 index 0000000..720de80 --- /dev/null +++ b/gencpp.sln @@ -0,0 +1,31 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.5.33516.290 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gencpp", "gencpp.vcxproj", "{53AF600D-C09C-4F39-83E0-E022AA9479F2}" +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 + {53AF600D-C09C-4F39-83E0-E022AA9479F2}.Debug|x64.ActiveCfg = Debug|x64 + {53AF600D-C09C-4F39-83E0-E022AA9479F2}.Debug|x64.Build.0 = Debug|x64 + {53AF600D-C09C-4F39-83E0-E022AA9479F2}.Debug|x86.ActiveCfg = Debug|Win32 + {53AF600D-C09C-4F39-83E0-E022AA9479F2}.Debug|x86.Build.0 = Debug|Win32 + {53AF600D-C09C-4F39-83E0-E022AA9479F2}.Release|x64.ActiveCfg = Release|x64 + {53AF600D-C09C-4F39-83E0-E022AA9479F2}.Release|x64.Build.0 = Release|x64 + {53AF600D-C09C-4F39-83E0-E022AA9479F2}.Release|x86.ActiveCfg = Release|Win32 + {53AF600D-C09C-4F39-83E0-E022AA9479F2}.Release|x86.Build.0 = Release|Win32 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {B12D2F1D-037C-44E1-B24B-2612E3DE0193} + EndGlobalSection +EndGlobal diff --git a/gencpp.vcxproj b/gencpp.vcxproj new file mode 100644 index 0000000..29e3f11 --- /dev/null +++ b/gencpp.vcxproj @@ -0,0 +1,130 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 17.0 + {53AF600D-C09C-4F39-83E0-E022AA9479F2} + MakeFileProj + 10.0 + + + + Makefile + true + v143 + + + Makefile + false + v143 + + + Makefile + true + v143 + + + Makefile + false + v143 + + + + + + + + + + + + + + + + + + + + + ./scripts/build.ps1 + ./scripts/clean.ps1 + ./scripts/build.ps1 + WIN32;_DEBUG;$(NMakePreprocessorDefinitions) + + + ./scripts/build.ps1 + ./scripts/clean.ps1 + ./scripts/build.ps1 + WIN32;NDEBUG;$(NMakePreprocessorDefinitions) + + + $(ProjectDir)scripts\build.ps1 + $(ProjectDir)scripts\build.ps1 + $(ProjectDir)scripts\clean.ps1 + gen_time;$(NMakePreprocessorDefinitions) + $(ProjectDir)thirdparty;$(ProjectDir)project;$(ProjectDir)test;$(IncludePath) + $(ProjectDir)project;$(ProjectDir)test;$(SourcePath) + + + $(ProjectDir)scripts\build.ps1 + $(ProjectDir)scripts\build.ps1 + $(ProjectDir)scripts\clean.ps1 + gen_time;$(NMakePreprocessorDefinitions) + $(ProjectDir)thirdparty;$(ProjectDir)project;$(ProjectDir)test;$(IncludePath) + $(ProjectDir)project;$(ProjectDir)test;$(SourcePath) + + + + stdc11 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/gencpp.vcxproj.filters b/gencpp.vcxproj.filters new file mode 100644 index 0000000..c04a89b --- /dev/null +++ b/gencpp.vcxproj.filters @@ -0,0 +1,17 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hh;hpp;hxx;hm;inl;inc;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav + + + \ No newline at end of file diff --git a/gencpp.vcxproj.user b/gencpp.vcxproj.user new file mode 100644 index 0000000..966b4ff --- /dev/null +++ b/gencpp.vcxproj.user @@ -0,0 +1,6 @@ + + + + true + + \ No newline at end of file