From 0ad7f7d96d02a758f0fa28b8214255202e7f8da1 Mon Sep 17 00:00:00 2001 From: elipzer Date: Wed, 10 Oct 2018 11:25:37 -0400 Subject: [PATCH] Added the new project folders Still need to setup DLL stuff with dll export/imports. Using DLLs should make the project faster to build AND should make it easier to distribute. --- CharcoalBuiltin/CharcoalBuiltin.vcxproj | 122 ++++++++++++++++++ .../CharcoalBuiltin.vcxproj.filters | 17 +++ Example/Example.vcxproj | 122 ++++++++++++++++++ Example/Example.vcxproj.filters | 17 +++ OpenGLEngine.sln | 20 +++ 5 files changed, 298 insertions(+) create mode 100644 CharcoalBuiltin/CharcoalBuiltin.vcxproj create mode 100644 CharcoalBuiltin/CharcoalBuiltin.vcxproj.filters create mode 100644 Example/Example.vcxproj create mode 100644 Example/Example.vcxproj.filters diff --git a/CharcoalBuiltin/CharcoalBuiltin.vcxproj b/CharcoalBuiltin/CharcoalBuiltin.vcxproj new file mode 100644 index 0000000..cb6f9fd --- /dev/null +++ b/CharcoalBuiltin/CharcoalBuiltin.vcxproj @@ -0,0 +1,122 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 15.0 + {29E6293C-506A-4FDD-8E3D-36674AD8163D} + CharcoalBuiltin + 10.0.17134.0 + + + + Application + true + v141 + MultiByte + + + Application + false + v141 + true + MultiByte + + + Application + true + v141 + MultiByte + + + Application + false + v141 + true + MultiByte + + + + + + + + + + + + + + + + + + + + + + + Level3 + Disabled + true + true + + + + + Level3 + Disabled + true + true + + + + + Level3 + MaxSpeed + true + true + true + true + + + true + true + + + + + Level3 + MaxSpeed + true + true + true + true + + + true + true + + + + + + + + \ No newline at end of file diff --git a/CharcoalBuiltin/CharcoalBuiltin.vcxproj.filters b/CharcoalBuiltin/CharcoalBuiltin.vcxproj.filters new file mode 100644 index 0000000..4863ddb --- /dev/null +++ b/CharcoalBuiltin/CharcoalBuiltin.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;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 + + + \ No newline at end of file diff --git a/Example/Example.vcxproj b/Example/Example.vcxproj new file mode 100644 index 0000000..9b0c330 --- /dev/null +++ b/Example/Example.vcxproj @@ -0,0 +1,122 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 15.0 + {2713E882-5224-490A-A056-F6AD20C42B12} + Example + 10.0.17134.0 + + + + Application + true + v141 + MultiByte + + + Application + false + v141 + true + MultiByte + + + Application + true + v141 + MultiByte + + + Application + false + v141 + true + MultiByte + + + + + + + + + + + + + + + + + + + + + + + Level3 + Disabled + true + true + + + + + Level3 + Disabled + true + true + + + + + Level3 + MaxSpeed + true + true + true + true + + + true + true + + + + + Level3 + MaxSpeed + true + true + true + true + + + true + true + + + + + + + + \ No newline at end of file diff --git a/Example/Example.vcxproj.filters b/Example/Example.vcxproj.filters new file mode 100644 index 0000000..4863ddb --- /dev/null +++ b/Example/Example.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;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 + + + \ No newline at end of file diff --git a/OpenGLEngine.sln b/OpenGLEngine.sln index 6de5bad..f531c0e 100644 --- a/OpenGLEngine.sln +++ b/OpenGLEngine.sln @@ -5,6 +5,10 @@ VisualStudioVersion = 15.0.27703.2026 MinimumVisualStudioVersion = 10.0.40219.1 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "OpenGLEngine", "OpenGLEngine\OpenGLEngine.vcxproj", "{C03B666E-F3CE-4223-977D-9D6E2952F22E}" EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Example", "Example\Example.vcxproj", "{2713E882-5224-490A-A056-F6AD20C42B12}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "CharcoalBuiltin", "CharcoalBuiltin\CharcoalBuiltin.vcxproj", "{29E6293C-506A-4FDD-8E3D-36674AD8163D}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|x64 = Debug|x64 @@ -21,6 +25,22 @@ Global {C03B666E-F3CE-4223-977D-9D6E2952F22E}.Release|x64.Build.0 = Release|x64 {C03B666E-F3CE-4223-977D-9D6E2952F22E}.Release|x86.ActiveCfg = Release|Win32 {C03B666E-F3CE-4223-977D-9D6E2952F22E}.Release|x86.Build.0 = Release|Win32 + {2713E882-5224-490A-A056-F6AD20C42B12}.Debug|x64.ActiveCfg = Debug|x64 + {2713E882-5224-490A-A056-F6AD20C42B12}.Debug|x64.Build.0 = Debug|x64 + {2713E882-5224-490A-A056-F6AD20C42B12}.Debug|x86.ActiveCfg = Debug|Win32 + {2713E882-5224-490A-A056-F6AD20C42B12}.Debug|x86.Build.0 = Debug|Win32 + {2713E882-5224-490A-A056-F6AD20C42B12}.Release|x64.ActiveCfg = Release|x64 + {2713E882-5224-490A-A056-F6AD20C42B12}.Release|x64.Build.0 = Release|x64 + {2713E882-5224-490A-A056-F6AD20C42B12}.Release|x86.ActiveCfg = Release|Win32 + {2713E882-5224-490A-A056-F6AD20C42B12}.Release|x86.Build.0 = Release|Win32 + {29E6293C-506A-4FDD-8E3D-36674AD8163D}.Debug|x64.ActiveCfg = Debug|x64 + {29E6293C-506A-4FDD-8E3D-36674AD8163D}.Debug|x64.Build.0 = Debug|x64 + {29E6293C-506A-4FDD-8E3D-36674AD8163D}.Debug|x86.ActiveCfg = Debug|Win32 + {29E6293C-506A-4FDD-8E3D-36674AD8163D}.Debug|x86.Build.0 = Debug|Win32 + {29E6293C-506A-4FDD-8E3D-36674AD8163D}.Release|x64.ActiveCfg = Release|x64 + {29E6293C-506A-4FDD-8E3D-36674AD8163D}.Release|x64.Build.0 = Release|x64 + {29E6293C-506A-4FDD-8E3D-36674AD8163D}.Release|x86.ActiveCfg = Release|Win32 + {29E6293C-506A-4FDD-8E3D-36674AD8163D}.Release|x86.Build.0 = Release|Win32 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE