From d920e5d62020d751ccaa3491cc66275ade749011 Mon Sep 17 00:00:00 2001 From: quou Date: Fri, 27 Dec 2024 18:52:48 +1100 Subject: building and running on windows with visual studio --- msbuild/c2.sln | 114 +++++++++++++ msbuild/c2.vcxproj | 186 +++++++++++++++++++++ msbuild/c2.vcxproj.filters | 60 +++++++ msbuild/cfg/cfg.vcxproj | 158 ++++++++++++++++++ msbuild/cfg/cfg.vcxproj.filters | 27 ++++ msbuild/convtexture/convtexture.vcxproj | 168 +++++++++++++++++++ msbuild/convtexture/convtexture.vcxproj.filters | 22 +++ msbuild/pack/pack.vcxproj | 177 ++++++++++++++++++++ msbuild/pack/pack.vcxproj.filters | 22 +++ msbuild/pack/thing.txt | 1 + msbuild/packer/packer.vcxproj | 168 +++++++++++++++++++ msbuild/packer/packer.vcxproj.filters | 22 +++ msbuild/qstd/qstd.vcxproj | 160 ++++++++++++++++++ msbuild/qstd/qstd.vcxproj.filters | 45 ++++++ msbuild/sc/sc.vcxproj | 180 +++++++++++++++++++++ msbuild/sc/sc.vcxproj.filters | 33 ++++ msbuild/shaders/shaders.vcxproj | 205 ++++++++++++++++++++++++ msbuild/shaders/shaders.vcxproj.filters | 25 +++ msbuild/textures/textures.vcxproj | 187 +++++++++++++++++++++ msbuild/textures/textures.vcxproj.filters | 25 +++ 20 files changed, 1985 insertions(+) create mode 100644 msbuild/c2.sln create mode 100644 msbuild/c2.vcxproj create mode 100644 msbuild/c2.vcxproj.filters create mode 100644 msbuild/cfg/cfg.vcxproj create mode 100644 msbuild/cfg/cfg.vcxproj.filters create mode 100644 msbuild/convtexture/convtexture.vcxproj create mode 100644 msbuild/convtexture/convtexture.vcxproj.filters create mode 100644 msbuild/pack/pack.vcxproj create mode 100644 msbuild/pack/pack.vcxproj.filters create mode 100644 msbuild/pack/thing.txt create mode 100644 msbuild/packer/packer.vcxproj create mode 100644 msbuild/packer/packer.vcxproj.filters create mode 100644 msbuild/qstd/qstd.vcxproj create mode 100644 msbuild/qstd/qstd.vcxproj.filters create mode 100644 msbuild/sc/sc.vcxproj create mode 100644 msbuild/sc/sc.vcxproj.filters create mode 100644 msbuild/shaders/shaders.vcxproj create mode 100644 msbuild/shaders/shaders.vcxproj.filters create mode 100644 msbuild/textures/textures.vcxproj create mode 100644 msbuild/textures/textures.vcxproj.filters (limited to 'msbuild') diff --git a/msbuild/c2.sln b/msbuild/c2.sln new file mode 100644 index 0000000..0d64859 --- /dev/null +++ b/msbuild/c2.sln @@ -0,0 +1,114 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.10.34928.147 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "c2", "c2.vcxproj", "{2EB76DF5-7119-4CB6-86F0-87EB929BE79C}" + ProjectSection(ProjectDependencies) = postProject + {1BB0EFA0-F482-4D8C-ADCC-946343D3FE02} = {1BB0EFA0-F482-4D8C-ADCC-946343D3FE02} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "qstd", "qstd\qstd.vcxproj", "{1BB0EFA0-F482-4D8C-ADCC-946343D3FE02}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "sc", "sc\sc.vcxproj", "{86C58EC1-51ED-4EC6-85A4-2FDF153DD92A}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cfg", "cfg\cfg.vcxproj", "{5B5D6195-0EFC-4DAD-80F5-DB69530F9E33}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "shaders", "shaders\shaders.vcxproj", "{C3EF6E38-D98F-4341-8373-571253F405BD}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "convtexture", "convtexture\convtexture.vcxproj", "{21C708D3-6F35-4C2B-A53E-9E06D8220218}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "textures", "textures\textures.vcxproj", "{0E0E5A6A-51C0-494D-8816-932422ADE2BA}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "packer", "packer\packer.vcxproj", "{3987E63D-CB96-42EB-BA88-A3AF3F640897}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pack", "pack\pack.vcxproj", "{F1112477-5C76-4351-A4B4-7E6266274F23}" +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 + {2EB76DF5-7119-4CB6-86F0-87EB929BE79C}.Debug|x64.ActiveCfg = Debug|x64 + {2EB76DF5-7119-4CB6-86F0-87EB929BE79C}.Debug|x64.Build.0 = Debug|x64 + {2EB76DF5-7119-4CB6-86F0-87EB929BE79C}.Debug|x86.ActiveCfg = Debug|Win32 + {2EB76DF5-7119-4CB6-86F0-87EB929BE79C}.Debug|x86.Build.0 = Debug|Win32 + {2EB76DF5-7119-4CB6-86F0-87EB929BE79C}.Release|x64.ActiveCfg = Release|x64 + {2EB76DF5-7119-4CB6-86F0-87EB929BE79C}.Release|x64.Build.0 = Release|x64 + {2EB76DF5-7119-4CB6-86F0-87EB929BE79C}.Release|x86.ActiveCfg = Release|Win32 + {2EB76DF5-7119-4CB6-86F0-87EB929BE79C}.Release|x86.Build.0 = Release|Win32 + {1BB0EFA0-F482-4D8C-ADCC-946343D3FE02}.Debug|x64.ActiveCfg = Debug|x64 + {1BB0EFA0-F482-4D8C-ADCC-946343D3FE02}.Debug|x64.Build.0 = Debug|x64 + {1BB0EFA0-F482-4D8C-ADCC-946343D3FE02}.Debug|x86.ActiveCfg = Debug|Win32 + {1BB0EFA0-F482-4D8C-ADCC-946343D3FE02}.Debug|x86.Build.0 = Debug|Win32 + {1BB0EFA0-F482-4D8C-ADCC-946343D3FE02}.Release|x64.ActiveCfg = Release|x64 + {1BB0EFA0-F482-4D8C-ADCC-946343D3FE02}.Release|x64.Build.0 = Release|x64 + {1BB0EFA0-F482-4D8C-ADCC-946343D3FE02}.Release|x86.ActiveCfg = Release|Win32 + {1BB0EFA0-F482-4D8C-ADCC-946343D3FE02}.Release|x86.Build.0 = Release|Win32 + {86C58EC1-51ED-4EC6-85A4-2FDF153DD92A}.Debug|x64.ActiveCfg = Debug|x64 + {86C58EC1-51ED-4EC6-85A4-2FDF153DD92A}.Debug|x64.Build.0 = Debug|x64 + {86C58EC1-51ED-4EC6-85A4-2FDF153DD92A}.Debug|x86.ActiveCfg = Debug|Win32 + {86C58EC1-51ED-4EC6-85A4-2FDF153DD92A}.Debug|x86.Build.0 = Debug|Win32 + {86C58EC1-51ED-4EC6-85A4-2FDF153DD92A}.Release|x64.ActiveCfg = Release|x64 + {86C58EC1-51ED-4EC6-85A4-2FDF153DD92A}.Release|x64.Build.0 = Release|x64 + {86C58EC1-51ED-4EC6-85A4-2FDF153DD92A}.Release|x86.ActiveCfg = Release|Win32 + {86C58EC1-51ED-4EC6-85A4-2FDF153DD92A}.Release|x86.Build.0 = Release|Win32 + {5B5D6195-0EFC-4DAD-80F5-DB69530F9E33}.Debug|x64.ActiveCfg = Debug|x64 + {5B5D6195-0EFC-4DAD-80F5-DB69530F9E33}.Debug|x64.Build.0 = Debug|x64 + {5B5D6195-0EFC-4DAD-80F5-DB69530F9E33}.Debug|x86.ActiveCfg = Debug|Win32 + {5B5D6195-0EFC-4DAD-80F5-DB69530F9E33}.Debug|x86.Build.0 = Debug|Win32 + {5B5D6195-0EFC-4DAD-80F5-DB69530F9E33}.Release|x64.ActiveCfg = Release|x64 + {5B5D6195-0EFC-4DAD-80F5-DB69530F9E33}.Release|x64.Build.0 = Release|x64 + {5B5D6195-0EFC-4DAD-80F5-DB69530F9E33}.Release|x86.ActiveCfg = Release|Win32 + {5B5D6195-0EFC-4DAD-80F5-DB69530F9E33}.Release|x86.Build.0 = Release|Win32 + {C3EF6E38-D98F-4341-8373-571253F405BD}.Debug|x64.ActiveCfg = Debug|x64 + {C3EF6E38-D98F-4341-8373-571253F405BD}.Debug|x64.Build.0 = Debug|x64 + {C3EF6E38-D98F-4341-8373-571253F405BD}.Debug|x86.ActiveCfg = Debug|Win32 + {C3EF6E38-D98F-4341-8373-571253F405BD}.Debug|x86.Build.0 = Debug|Win32 + {C3EF6E38-D98F-4341-8373-571253F405BD}.Release|x64.ActiveCfg = Release|x64 + {C3EF6E38-D98F-4341-8373-571253F405BD}.Release|x64.Build.0 = Release|x64 + {C3EF6E38-D98F-4341-8373-571253F405BD}.Release|x86.ActiveCfg = Release|Win32 + {C3EF6E38-D98F-4341-8373-571253F405BD}.Release|x86.Build.0 = Release|Win32 + {21C708D3-6F35-4C2B-A53E-9E06D8220218}.Debug|x64.ActiveCfg = Debug|x64 + {21C708D3-6F35-4C2B-A53E-9E06D8220218}.Debug|x64.Build.0 = Debug|x64 + {21C708D3-6F35-4C2B-A53E-9E06D8220218}.Debug|x86.ActiveCfg = Debug|Win32 + {21C708D3-6F35-4C2B-A53E-9E06D8220218}.Debug|x86.Build.0 = Debug|Win32 + {21C708D3-6F35-4C2B-A53E-9E06D8220218}.Release|x64.ActiveCfg = Release|x64 + {21C708D3-6F35-4C2B-A53E-9E06D8220218}.Release|x64.Build.0 = Release|x64 + {21C708D3-6F35-4C2B-A53E-9E06D8220218}.Release|x86.ActiveCfg = Release|Win32 + {21C708D3-6F35-4C2B-A53E-9E06D8220218}.Release|x86.Build.0 = Release|Win32 + {0E0E5A6A-51C0-494D-8816-932422ADE2BA}.Debug|x64.ActiveCfg = Debug|x64 + {0E0E5A6A-51C0-494D-8816-932422ADE2BA}.Debug|x64.Build.0 = Debug|x64 + {0E0E5A6A-51C0-494D-8816-932422ADE2BA}.Debug|x86.ActiveCfg = Debug|Win32 + {0E0E5A6A-51C0-494D-8816-932422ADE2BA}.Debug|x86.Build.0 = Debug|Win32 + {0E0E5A6A-51C0-494D-8816-932422ADE2BA}.Release|x64.ActiveCfg = Release|x64 + {0E0E5A6A-51C0-494D-8816-932422ADE2BA}.Release|x64.Build.0 = Release|x64 + {0E0E5A6A-51C0-494D-8816-932422ADE2BA}.Release|x86.ActiveCfg = Release|Win32 + {0E0E5A6A-51C0-494D-8816-932422ADE2BA}.Release|x86.Build.0 = Release|Win32 + {3987E63D-CB96-42EB-BA88-A3AF3F640897}.Debug|x64.ActiveCfg = Debug|x64 + {3987E63D-CB96-42EB-BA88-A3AF3F640897}.Debug|x64.Build.0 = Debug|x64 + {3987E63D-CB96-42EB-BA88-A3AF3F640897}.Debug|x86.ActiveCfg = Debug|Win32 + {3987E63D-CB96-42EB-BA88-A3AF3F640897}.Debug|x86.Build.0 = Debug|Win32 + {3987E63D-CB96-42EB-BA88-A3AF3F640897}.Release|x64.ActiveCfg = Release|x64 + {3987E63D-CB96-42EB-BA88-A3AF3F640897}.Release|x64.Build.0 = Release|x64 + {3987E63D-CB96-42EB-BA88-A3AF3F640897}.Release|x86.ActiveCfg = Release|Win32 + {3987E63D-CB96-42EB-BA88-A3AF3F640897}.Release|x86.Build.0 = Release|Win32 + {F1112477-5C76-4351-A4B4-7E6266274F23}.Debug|x64.ActiveCfg = Debug|x64 + {F1112477-5C76-4351-A4B4-7E6266274F23}.Debug|x64.Build.0 = Debug|x64 + {F1112477-5C76-4351-A4B4-7E6266274F23}.Debug|x86.ActiveCfg = Debug|Win32 + {F1112477-5C76-4351-A4B4-7E6266274F23}.Debug|x86.Build.0 = Debug|Win32 + {F1112477-5C76-4351-A4B4-7E6266274F23}.Release|x64.ActiveCfg = Release|x64 + {F1112477-5C76-4351-A4B4-7E6266274F23}.Release|x64.Build.0 = Release|x64 + {F1112477-5C76-4351-A4B4-7E6266274F23}.Release|x86.ActiveCfg = Release|Win32 + {F1112477-5C76-4351-A4B4-7E6266274F23}.Release|x86.Build.0 = Release|Win32 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {C3DE9B06-003A-4B5A-9C70-43C8AA8909BF} + EndGlobalSection +EndGlobal diff --git a/msbuild/c2.vcxproj b/msbuild/c2.vcxproj new file mode 100644 index 0000000..ca74e7e --- /dev/null +++ b/msbuild/c2.vcxproj @@ -0,0 +1,186 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 17.0 + Win32Proj + {2eb76df5-7119-4cb6-86f0-87eb929be79c} + c2 + 10.0 + + + + Application + true + v143 + NotSet + + + Application + false + v143 + true + NotSet + + + Application + true + v143 + NotSet + + + Application + false + v143 + true + NotSet + + + + + + + + + + + + + + + + + + + + + $(SolutionDir)bin\$(ProjectName)\$(Configuration)\$(Platform)\ + $(SolutionDir)obj\$(ProjectName)\$(Configuration)\$(Platform)\ + + + $(SolutionDir)bin\$(ProjectName)\$(Configuration)\$(Platform)\ + $(SolutionDir)obj\$(ProjectName)\$(Configuration)\$(Platform)\ + + + $(SolutionDir)bin\$(ProjectName)\$(Configuration)\$(Platform)\ + $(SolutionDir)obj\$(ProjectName)\$(Configuration)\$(Platform)\ + + + $(SolutionDir)bin\$(ProjectName)\$(Configuration)\$(Platform)\ + $(SolutionDir)obj\$(ProjectName)\$(Configuration)\$(Platform)\ + + + + Level3 + true + plat_win;plat_x86;allocation_default_alignment=8;_CRT_SECURE_NO_WARNINGS;WIN32;_DEBUG;DEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + $(SolutionDir)..\qstd;$(SolutionDir)..\ + stdcpp20 + + + Windows + true + $(SolutionDir)bin\qstd\$(Configuration)\$(Platform)\ + qstd.lib;$(CoreLibraryDependencies);%(AdditionalDependencies) + + + + + Level3 + true + true + true + plat_win;plat_x86;allocation_default_alignment=8;_CRT_SECURE_NO_WARNINGS;WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + $(SolutionDir)..\qstd;$(SolutionDir)..\ + stdcpp20 + + + Windows + true + true + true + $(SolutionDir)bin\qstd\$(Configuration)\$(Platform)\ + qstd.lib;$(CoreLibraryDependencies);%(AdditionalDependencies) + + + + + Level3 + true + plat_win;plat_x86;allocation_default_alignment=8;_CRT_SECURE_NO_WARNINGS;_DEBUG;DEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + $(SolutionDir)..\qstd;$(SolutionDir)..\ + stdcpp20 + + + Windows + true + $(SolutionDir)bin\qstd\$(Configuration)\$(Platform)\ + qstd.lib;$(CoreLibraryDependencies);%(AdditionalDependencies) + + + + + Level3 + true + true + true + plat_win;plat_x86;allocation_default_alignment=8;_CRT_SECURE_NO_WARNINGS;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + $(SolutionDir)..\qstd;$(SolutionDir)..\ + stdcpp20 + + + Windows + true + true + true + $(SolutionDir)bin\qstd\$(Configuration)\$(Platform)\ + qstd.lib;$(CoreLibraryDependencies);%(AdditionalDependencies) + + + + + + + + + + + + + + + + + + + + + + {1bb0efa0-f482-4d8c-adcc-946343d3fe02} + + + + + + \ No newline at end of file diff --git a/msbuild/c2.vcxproj.filters b/msbuild/c2.vcxproj.filters new file mode 100644 index 0000000..0f942d6 --- /dev/null +++ b/msbuild/c2.vcxproj.filters @@ -0,0 +1,60 @@ + + + + + {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 + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + \ No newline at end of file diff --git a/msbuild/cfg/cfg.vcxproj b/msbuild/cfg/cfg.vcxproj new file mode 100644 index 0000000..b212b78 --- /dev/null +++ b/msbuild/cfg/cfg.vcxproj @@ -0,0 +1,158 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 17.0 + Win32Proj + {5b5d6195-0efc-4dad-80f5-db69530f9e33} + cfg + 10.0 + + + + StaticLibrary + true + v143 + Unicode + + + StaticLibrary + false + v143 + true + Unicode + + + StaticLibrary + true + v143 + Unicode + + + StaticLibrary + false + v143 + true + Unicode + + + + + + + + + + + + + + + + + + + + + $(SolutionDir)bin\$(ProjectName)\$(Configuration)\$(Platform)\ + $(SolutionDir)obj\$(ProjectName)\$(Configuration)\$(Platform)\ + + + $(SolutionDir)bin\$(ProjectName)\$(Configuration)\$(Platform)\ + $(SolutionDir)obj\$(ProjectName)\$(Configuration)\$(Platform)\ + + + $(SolutionDir)bin\$(ProjectName)\$(Configuration)\$(Platform)\ + $(SolutionDir)obj\$(ProjectName)\$(Configuration)\$(Platform)\ + + + $(SolutionDir)bin\$(ProjectName)\$(Configuration)\$(Platform)\ + $(SolutionDir)obj\$(ProjectName)\$(Configuration)\$(Platform)\ + + + + Level3 + true + plat_win;plat_x86;allocation_default_alignment=8;_CRT_SECURE_NO_WARNINGS;WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + $(SolutionDir)..\qstd + + + Console + true + + + + + Level3 + true + true + true + plat_win;plat_x86;allocation_default_alignment=8;_CRT_SECURE_NO_WARNINGS;WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + $(SolutionDir)..\qstd + + + Console + true + true + true + + + + + Level3 + true + plat_win;plat_x86;allocation_default_alignment=8;_CRT_SECURE_NO_WARNINGS;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + $(SolutionDir)..\qstd + + + Console + true + + + + + Level3 + true + true + true + plat_win;plat_x86;allocation_default_alignment=8;_CRT_SECURE_NO_WARNINGS;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + $(SolutionDir)..\qstd + + + Console + true + true + true + + + + + + + + + + + + \ No newline at end of file diff --git a/msbuild/cfg/cfg.vcxproj.filters b/msbuild/cfg/cfg.vcxproj.filters new file mode 100644 index 0000000..63a4192 --- /dev/null +++ b/msbuild/cfg/cfg.vcxproj.filters @@ -0,0 +1,27 @@ + + + + + {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 + + + + + Header Files + + + \ No newline at end of file diff --git a/msbuild/convtexture/convtexture.vcxproj b/msbuild/convtexture/convtexture.vcxproj new file mode 100644 index 0000000..3fc78c3 --- /dev/null +++ b/msbuild/convtexture/convtexture.vcxproj @@ -0,0 +1,168 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 17.0 + Win32Proj + {21c708d3-6f35-4c2b-a53e-9e06d8220218} + convtexture + 10.0 + + + + Application + true + v143 + Unicode + + + Application + false + v143 + true + Unicode + + + Application + true + v143 + Unicode + + + Application + false + v143 + true + Unicode + + + + + + + + + + + + + + + + + + + + + $(SolutionDir)bin\$(ProjectName)\$(Configuration)\$(Platform)\ + $(SolutionDir)obj\$(ProjectName)\$(Configuration)\$(Platform)\ + + + $(SolutionDir)bin\$(ProjectName)\$(Configuration)\$(Platform)\ + $(SolutionDir)obj\$(ProjectName)\$(Configuration)\$(Platform)\ + + + $(SolutionDir)bin\$(ProjectName)\$(Configuration)\$(Platform)\ + $(SolutionDir)obj\$(ProjectName)\$(Configuration)\$(Platform)\ + + + $(SolutionDir)bin\$(ProjectName)\$(Configuration)\$(Platform)\ + $(SolutionDir)obj\$(ProjectName)\$(Configuration)\$(Platform)\ + + + + Level3 + true + plat_win;plat_x86;allocation_default_alignment=8;_CRT_SECURE_NO_WARNINGS;DEBUGWIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + $(SolutionDir)..\qstd + + + Console + true + $(SolutionDir)bin\qstd\$(Configuration)\$(Platform)\ + qstd.lib;$(CoreLibraryDependencies);%(AdditionalDependencies) + + + + + Level3 + true + true + true + plat_win;plat_x86;allocation_default_alignment=8;_CRT_SECURE_NO_WARNINGS;WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + $(SolutionDir)..\qstd + + + Console + true + true + true + $(SolutionDir)bin\qstd\$(Configuration)\$(Platform)\ + qstd.lib;$(CoreLibraryDependencies);%(AdditionalDependencies) + + + + + Level3 + true + plat_win;plat_x86;allocation_default_alignment=8;_CRT_SECURE_NO_WARNINGS;DEBUG_DEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + $(SolutionDir)..\qstd + + + Console + true + $(SolutionDir)bin\qstd\$(Configuration)\$(Platform)\ + qstd.lib;$(CoreLibraryDependencies);%(AdditionalDependencies) + + + + + Level3 + true + true + true + plat_win;plat_x86;allocation_default_alignment=8;_CRT_SECURE_NO_WARNINGS;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + $(SolutionDir)..\qstd + + + Console + true + true + true + $(SolutionDir)bin\qstd\$(Configuration)\$(Platform)\ + qstd.lib;$(CoreLibraryDependencies);%(AdditionalDependencies) + + + + + + + + {1bb0efa0-f482-4d8c-adcc-946343d3fe02} + + + + + + \ No newline at end of file diff --git a/msbuild/convtexture/convtexture.vcxproj.filters b/msbuild/convtexture/convtexture.vcxproj.filters new file mode 100644 index 0000000..869b545 --- /dev/null +++ b/msbuild/convtexture/convtexture.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/msbuild/pack/pack.vcxproj b/msbuild/pack/pack.vcxproj new file mode 100644 index 0000000..bb0c415 --- /dev/null +++ b/msbuild/pack/pack.vcxproj @@ -0,0 +1,177 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 17.0 + Win32Proj + {f1112477-5c76-4351-a4b4-7e6266274f23} + pack + 10.0 + + + + Utility + true + v143 + Unicode + + + Utility + false + v143 + true + Unicode + + + Utility + true + v143 + Unicode + + + Utility + false + v143 + true + Unicode + + + + + + + + + + + + + + + + + + + + + $(SolutionDir)bin\$(ProjectName)\$(Configuration)\$(Platform)\ + $(SolutionDir)obj\$(ProjectName)\$(Configuration)\$(Platform)\ + + + $(SolutionDir)bin\$(ProjectName)\$(Configuration)\$(Platform)\ + $(SolutionDir)obj\$(ProjectName)\$(Configuration)\$(Platform)\ + + + $(SolutionDir)bin\$(ProjectName)\$(Configuration)\$(Platform)\ + $(SolutionDir)obj\$(ProjectName)\$(Configuration)\$(Platform)\ + + + $(SolutionDir)bin\$(ProjectName)\$(Configuration)\$(Platform)\ + $(SolutionDir)obj\$(ProjectName)\$(Configuration)\$(Platform)\ + + + + 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 + + + + + $(SolutionDir)..\data\22.tex;$(SolutionDir)..\data\kita.tex;$(SolutionDir)..\data\triangle.csh;$(SolutionDir)..\data\ui.csh;%(AdditionalInputs) + $(SolutionDir)..\data\22.tex;$(SolutionDir)..\data\kita.tex;$(SolutionDir)..\data\triangle.csh;$(SolutionDir)..\data\ui.csh;%(AdditionalInputs) + $(SolutionDir)..\data\22.tex;$(SolutionDir)..\data\kita.tex;$(SolutionDir)..\data\triangle.csh;$(SolutionDir)..\data\ui.csh;%(AdditionalInputs) + $(SolutionDir)..\data\22.tex;$(SolutionDir)..\data\kita.tex;$(SolutionDir)..\data\triangle.csh;$(SolutionDir)..\data\ui.csh;%(AdditionalInputs) + $(SolutionDir)bin\packer\$(Configuration)\$(Platform)\packer.exe $(SolutionDir)..\pack $(SolutionDir)..\data 22.tex kita.tex triangle.csh ui.csh + + $(SolutionDir)bin\packer\$(Configuration)\$(Platform)\packer.exe $(SolutionDir)..\pack $(SolutionDir)..\data 22.tex kita.tex triangle.csh ui.csh + $(SolutionDir)..\pack + $(SolutionDir)bin\packer\$(Configuration)\$(Platform)\packer.exe $(SolutionDir)..\pack $(SolutionDir)..\data 22.tex kita.tex triangle.csh ui.csh + + $(SolutionDir)bin\packer\$(Configuration)\$(Platform)\packer.exe $(SolutionDir)..\pack $(SolutionDir)..\data 22.tex kita.tex triangle.csh ui.csh + $(SolutionDir)..\pack + $(SolutionDir)bin\packer\$(Configuration)\$(Platform)\packer.exe $(SolutionDir)..\pack $(SolutionDir)..\data 22.tex kita.tex triangle.csh ui.csh + + $(SolutionDir)bin\packer\$(Configuration)\$(Platform)\packer.exe $(SolutionDir)..\pack $(SolutionDir)..\data 22.tex kita.tex triangle.csh ui.csh + $(SolutionDir)..\pack + $(SolutionDir)bin\packer\$(Configuration)\$(Platform)\packer.exe $(SolutionDir)..\pack $(SolutionDir)..\data 22.tex kita.tex triangle.csh ui.csh + + $(SolutionDir)bin\packer\$(Configuration)\$(Platform)\packer.exe $(SolutionDir)..\pack $(SolutionDir)..\data 22.tex kita.tex triangle.csh ui.csh + $(SolutionDir)..\pack + + + + + {3987e63d-cb96-42eb-ba88-a3af3f640897} + + + + + + \ No newline at end of file diff --git a/msbuild/pack/pack.vcxproj.filters b/msbuild/pack/pack.vcxproj.filters new file mode 100644 index 0000000..9ffa948 --- /dev/null +++ b/msbuild/pack/pack.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/msbuild/pack/thing.txt b/msbuild/pack/thing.txt new file mode 100644 index 0000000..76fb4d4 --- /dev/null +++ b/msbuild/pack/thing.txt @@ -0,0 +1 @@ +hello im a cute little file \ No newline at end of file diff --git a/msbuild/packer/packer.vcxproj b/msbuild/packer/packer.vcxproj new file mode 100644 index 0000000..22e86b1 --- /dev/null +++ b/msbuild/packer/packer.vcxproj @@ -0,0 +1,168 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 17.0 + Win32Proj + {3987e63d-cb96-42eb-ba88-a3af3f640897} + packer + 10.0 + + + + Application + true + v143 + Unicode + + + Application + false + v143 + true + Unicode + + + Application + true + v143 + Unicode + + + Application + false + v143 + true + Unicode + + + + + + + + + + + + + + + + + + + + + $(SolutionDir)bin\$(ProjectName)\$(Configuration)\$(Platform)\ + $(SolutionDir)obj\$(ProjectName)\$(Configuration)\$(Platform)\ + + + $(SolutionDir)bin\$(ProjectName)\$(Configuration)\$(Platform)\ + $(SolutionDir)obj\$(ProjectName)\$(Configuration)\$(Platform)\ + + + $(SolutionDir)bin\$(ProjectName)\$(Configuration)\$(Platform)\ + $(SolutionDir)obj\$(ProjectName)\$(Configuration)\$(Platform)\ + + + $(SolutionDir)bin\$(ProjectName)\$(Configuration)\$(Platform)\ + $(SolutionDir)obj\$(ProjectName)\$(Configuration)\$(Platform)\ + + + + Level3 + true + plat_win;plat_x86;allocation_default_alignment=8;_CRT_SECURE_NO_WARNINGS;DEBUG;WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + $(SolutionDir)..\qstd + + + Console + true + $(SolutionDir)bin\qstd\$(Configuration)\$(Platform)\ + qstd.lib;$(CoreLibraryDependencies);%(AdditionalDependencies) + + + + + Level3 + true + true + true + plat_win;plat_x86;allocation_default_alignment=8;_CRT_SECURE_NO_WARNINGS;WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + $(SolutionDir)..\qstd + + + Console + true + true + true + $(SolutionDir)bin\qstd\$(Configuration)\$(Platform)\ + qstd.lib;$(CoreLibraryDependencies);%(AdditionalDependencies) + + + + + Level3 + true + plat_win;plat_x86;allocation_default_alignment=8;_CRT_SECURE_NO_WARNINGS;DEBUG;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + $(SolutionDir)..\qstd + + + Console + true + $(SolutionDir)bin\qstd\$(Configuration)\$(Platform)\ + qstd.lib;$(CoreLibraryDependencies);%(AdditionalDependencies) + + + + + Level3 + true + true + true + plat_win;plat_x86;allocation_default_alignment=8;_CRT_SECURE_NO_WARNINGS;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + $(SolutionDir)..\qstd + + + Console + true + true + true + $(SolutionDir)bin\qstd\$(Configuration)\$(Platform)\ + qstd.lib;$(CoreLibraryDependencies);%(AdditionalDependencies) + + + + + + + + {1bb0efa0-f482-4d8c-adcc-946343d3fe02} + + + + + + \ No newline at end of file diff --git a/msbuild/packer/packer.vcxproj.filters b/msbuild/packer/packer.vcxproj.filters new file mode 100644 index 0000000..f0cfd0c --- /dev/null +++ b/msbuild/packer/packer.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/msbuild/qstd/qstd.vcxproj b/msbuild/qstd/qstd.vcxproj new file mode 100644 index 0000000..0d9209e --- /dev/null +++ b/msbuild/qstd/qstd.vcxproj @@ -0,0 +1,160 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 17.0 + Win32Proj + {1bb0efa0-f482-4d8c-adcc-946343d3fe02} + qstd + 10.0 + + + + StaticLibrary + true + v143 + NotSet + + + StaticLibrary + false + v143 + true + NotSet + + + StaticLibrary + true + v143 + NotSet + + + StaticLibrary + false + v143 + true + NotSet + + + + + + + + + + + + + + + + + + + + + $(SolutionDir)bin\$(ProjectName)\$(Configuration)\$(Platform)\ + $(SolutionDir)obj\$(ProjectName)\$(Configuration)\$(Platform)\ + + + $(SolutionDir)bin\$(ProjectName)\$(Configuration)\$(Platform)\ + $(SolutionDir)obj\$(ProjectName)\$(Configuration)\$(Platform)\ + + + $(SolutionDir)bin\$(ProjectName)\$(Configuration)\$(Platform)\ + $(SolutionDir)obj\$(ProjectName)\$(Configuration)\$(Platform)\ + + + $(SolutionDir)bin\$(ProjectName)\$(Configuration)\$(Platform)\ + $(SolutionDir)obj\$(ProjectName)\$(Configuration)\$(Platform)\ + + + + Level3 + true + plat_win;plat_x86;allocation_default_alignment=8;_CRT_SECURE_NO_WARNINGS;WIN32;DEBUG;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + + + Console + true + + + + + Level3 + true + true + true + plat_win;plat_x86;allocation_default_alignment=8;_CRT_SECURE_NO_WARNINGS;WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + + + Console + true + true + true + + + + + Level3 + true + plat_win;plat_x86;allocation_default_alignment=8;_CRT_SECURE_NO_WARNINGS;_DEBUG;DEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + + + Console + true + + + + + Level3 + true + true + true + plat_win;plat_x86;allocation_default_alignment=8;_CRT_SECURE_NO_WARNINGS;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + + + Console + true + true + true + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/msbuild/qstd/qstd.vcxproj.filters b/msbuild/qstd/qstd.vcxproj.filters new file mode 100644 index 0000000..5e4bacd --- /dev/null +++ b/msbuild/qstd/qstd.vcxproj.filters @@ -0,0 +1,45 @@ + + + + + {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 + + + Source Files + + + Source Files + + + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + \ No newline at end of file diff --git a/msbuild/sc/sc.vcxproj b/msbuild/sc/sc.vcxproj new file mode 100644 index 0000000..e0a2c50 --- /dev/null +++ b/msbuild/sc/sc.vcxproj @@ -0,0 +1,180 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 17.0 + Win32Proj + {86c58ec1-51ed-4ec6-85a4-2fdf153dd92a} + sc + 10.0 + + + + Application + true + v143 + Unicode + + + Application + false + v143 + true + Unicode + + + Application + true + v143 + Unicode + + + Application + false + v143 + true + Unicode + + + + + + + + + + + + + + + + + + + + + $(SolutionDir)bin\$(ProjectName)\$(Configuration)\$(Platform)\ + $(SolutionDir)obj\$(ProjectName)\$(Configuration)\$(Platform)\ + + + $(SolutionDir)bin\$(ProjectName)\$(Configuration)\$(Platform)\ + $(SolutionDir)obj\$(ProjectName)\$(Configuration)\$(Platform)\ + + + $(SolutionDir)bin\$(ProjectName)\$(Configuration)\$(Platform)\ + $(SolutionDir)obj\$(ProjectName)\$(Configuration)\$(Platform)\ + + + $(SolutionDir)bin\$(ProjectName)\$(Configuration)\$(Platform)\ + $(SolutionDir)obj\$(ProjectName)\$(Configuration)\$(Platform)\ + + + + Level3 + true + plat_win;plat_x86;allocation_default_alignment=8;DEBUG;_CRT_SECURE_NO_WARNINGS;WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + $(SolutionDir)..\qstd;$(SolutionDir)..\cfg;$(SolutionDir)..\;$(SolutionDir)..\sc\glslang + stdcpp20 + + + Console + true + $(SolutionDir)bin\qstd\$(Configuration)\$(Platform)\;$(SolutionDir)bin\cfg\$(Configuration)\$(Platform)\;$(SolutionDir)..\sc\glslang\build\SPIRV\$(Configuration);$(SolutionDir)..\sc\glslang\build\glslang\OSDependent\Windows\$(Configuration);$(SolutionDir)..\sc\glslang\build\glslang\$(Configuration);$(SolutionDir)..\sc\glslang\build\External\spirv-tools\source\$(Configuration);$(SolutionDir)..\sc\glslang\build\External\spirv-tools\source\link\$(Configuration);$(SolutionDir)..\sc\glslang\build\External\spirv-tools\source\opt\$(Configuration) + qstd.lib;cfg.lib;glslangd.lib;glslang-default-resource-limitsd.lib;SPIRVd.lib;MachineIndependentd.lib;SPVRemapperd.lib;OSDependentd.lib;GenericCodeGend.lib;SPIRV-Tools-linkd.lib;SPIRV-Tools-optd.lib;SPIRV-Toolsd.lib;$(CoreLibraryDependencies);%(AdditionalDependencies) + + + + + Level3 + true + true + true + plat_win;plat_x86;allocation_default_alignment=8;_CRT_SECURE_NO_WARNINGS;WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + $(SolutionDir)..\qstd;$(SolutionDir)..\cfg;$(SolutionDir)..\;$(SolutionDir)..\sc\glslang + stdcpp20 + + + Console + true + true + true + $(SolutionDir)bin\qstd\$(Configuration)\$(Platform)\;$(SolutionDir)bin\cfg\$(Configuration)\$(Platform)\;$(SolutionDir)..\sc\glslang\build\SPIRV\$(Configuration);$(SolutionDir)..\sc\glslang\build\glslang\OSDependent\Windows\$(Configuration);$(SolutionDir)..\sc\glslang\build\glslang\$(Configuration);$(SolutionDir)..\sc\glslang\build\External\spirv-tools\source\$(Configuration);$(SolutionDir)..\sc\glslang\build\External\spirv-tools\source\link\$(Configuration);$(SolutionDir)..\sc\glslang\build\External\spirv-tools\source\opt\$(Configuration) + qstd.lib;cfg.lib;glslang.lib;glslang-default-resource-limits.lib;SPIRV.lib;MachineIndependent.lib;SPVRemapper.lib;OSDependent.lib;GenericCodeGen.lib;SPIRV-Tools-link.lib;SPIRV-Tools-opt.lib;SPIRV-Tools.lib;$(CoreLibraryDependencies);%(AdditionalDependencies) + + + + + Level3 + true + plat_win;plat_x86;allocation_default_alignment=8;DEBUG;_CRT_SECURE_NO_WARNINGS;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + $(SolutionDir)..\qstd;$(SolutionDir)..\cfg;$(SolutionDir)..\;$(SolutionDir)..\sc\glslang + stdcpp20 + + + Console + true + $(SolutionDir)bin\qstd\$(Configuration)\$(Platform)\;$(SolutionDir)bin\cfg\$(Configuration)\$(Platform)\;$(SolutionDir)..\sc\glslang\build\SPIRV\$(Configuration);$(SolutionDir)..\sc\glslang\build\glslang\OSDependent\Windows\$(Configuration);$(SolutionDir)..\sc\glslang\build\glslang\$(Configuration);$(SolutionDir)..\sc\glslang\build\External\spirv-tools\source\$(Configuration);$(SolutionDir)..\sc\glslang\build\External\spirv-tools\source\link\$(Configuration);$(SolutionDir)..\sc\glslang\build\External\spirv-tools\source\opt\$(Configuration) + qstd.lib;cfg.lib;glslangd.lib;glslang-default-resource-limitsd.lib;SPIRVd.lib;MachineIndependentd.lib;SPVRemapperd.lib;OSDependentd.lib;GenericCodeGend.lib;SPIRV-Tools-linkd.lib;SPIRV-Tools-optd.lib;SPIRV-Toolsd.lib;$(CoreLibraryDependencies);%(AdditionalDependencies) + + + + + Level3 + true + true + true + plat_win;plat_x86;allocation_default_alignment=8;_CRT_SECURE_NO_WARNINGS;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + $(SolutionDir)..\qstd;$(SolutionDir)..\cfg;$(SolutionDir)..\;$(SolutionDir)..\sc\glslang + stdcpp20 + + + Console + true + true + true + $(SolutionDir)bin\qstd\$(Configuration)\$(Platform)\;$(SolutionDir)bin\cfg\$(Configuration)\$(Platform)\;$(SolutionDir)..\sc\glslang\build\SPIRV\$(Configuration);$(SolutionDir)..\sc\glslang\build\glslang\OSDependent\Windows\$(Configuration);$(SolutionDir)..\sc\glslang\build\glslang\$(Configuration);$(SolutionDir)..\sc\glslang\build\External\spirv-tools\source\$(Configuration);$(SolutionDir)..\sc\glslang\build\External\spirv-tools\source\link\$(Configuration);$(SolutionDir)..\sc\glslang\build\External\spirv-tools\source\opt\$(Configuration) + qstd.lib;cfg.lib;glslang.lib;glslang-default-resource-limits.lib;SPIRV.lib;MachineIndependent.lib;SPVRemapper.lib;OSDependent.lib;GenericCodeGen.lib;SPIRV-Tools-link.lib;SPIRV-Tools-opt.lib;SPIRV-Tools.lib;$(CoreLibraryDependencies);%(AdditionalDependencies) + + + + + + + + + + + + + {5b5d6195-0efc-4dad-80f5-db69530f9e33} + + + {1bb0efa0-f482-4d8c-adcc-946343d3fe02} + + + + + + \ No newline at end of file diff --git a/msbuild/sc/sc.vcxproj.filters b/msbuild/sc/sc.vcxproj.filters new file mode 100644 index 0000000..1bf735b --- /dev/null +++ b/msbuild/sc/sc.vcxproj.filters @@ -0,0 +1,33 @@ + + + + + {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 + + + Header Files + + + \ No newline at end of file diff --git a/msbuild/shaders/shaders.vcxproj b/msbuild/shaders/shaders.vcxproj new file mode 100644 index 0000000..5b9e602 --- /dev/null +++ b/msbuild/shaders/shaders.vcxproj @@ -0,0 +1,205 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 17.0 + Win32Proj + {c3ef6e38-d98f-4341-8373-571253f405bd} + shaders + 10.0 + + + + Utility + true + v143 + Unicode + + + Utility + false + v143 + true + Unicode + + + Utility + true + v143 + Unicode + + + Utility + false + v143 + true + Unicode + + + + + + + + + + + + + + + + + + + + + $(SolutionDir)..\data\ + $(SolutionDir)obj\$(ProjectName)\$(Configuration)\$(Platform)\ + + + $(SolutionDir)..\data\ + $(SolutionDir)obj\$(ProjectName)\$(Configuration)\$(Platform)\ + + + $(SolutionDir)..\data\ + $(SolutionDir)obj\$(ProjectName)\$(Configuration)\$(Platform)\ + + + $(SolutionDir)..\data\ + $(SolutionDir)obj\$(ProjectName)\$(Configuration)\$(Platform)\ + + + + Level3 + true + WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + + + Console + true + + + $(SolutionDir)bin\sc\$(Configuration)\$(Platform)\sc.exe %(FullPath) $(SolutionDir)..\data\%(Filename).csh + $(SolutionDir)bin\sc\$(Configuration)\$(Platform)\sc.exe %(FullPath) $(SolutionDir)..\data\%(Filename).csh + $(SolutionDir)..\data\%(Filename).csh + + + + + Level3 + true + true + true + WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + + + Console + true + true + true + + + $(SolutionDir)bin\sc\$(Configuration)\$(Platform)\sc.exe %(FullPath) $(SolutionDir)..\data\%(Filename).csh + $(SolutionDir)bin\sc\$(Configuration)\$(Platform)\sc.exe %(FullPath) $(SolutionDir)..\data\%(Filename).csh + $(SolutionDir)..\data\%(Filename).csh + + + + + Level3 + true + _DEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + + + Console + true + + + $(SolutionDir)bin\sc\$(Configuration)\$(Platform)\sc.exe %(FullPath) $(SolutionDir)..\data\%(Filename).csh + $(SolutionDir)bin\sc\$(Configuration)\$(Platform)\sc.exe %(FullPath) $(SolutionDir)..\data\%(Filename).csh + $(SolutionDir)..\data\%(Filename).csh + + + + + Level3 + true + true + true + NDEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + + + Console + true + true + true + + + $(SolutionDir)bin\sc\$(Configuration)\$(Platform)\sc.exe %(FullPath) $(SolutionDir)..\data\%(Filename).csh + $(SolutionDir)bin\sc\$(Configuration)\$(Platform)\sc.exe %(FullPath) $(SolutionDir)..\data\%(Filename).csh + $(SolutionDir)..\data\%(Filename).csh + + + + + Document + $(SolutionDir)bin\sc\$(Configuration)\$(Platform)\sc.exe %(FullPath) $(SolutionDir)..\data\%(Filename).csh + $(SolutionDir)bin\sc\$(Configuration)\$(Platform)\sc.exe %(FullPath) $(SolutionDir)..\data\%(Filename).csh + $(SolutionDir)bin\sc\$(Configuration)\$(Platform)\sc.exe %(FullPath) $(SolutionDir)..\data\%(Filename).csh + $(SolutionDir)bin\sc\$(Configuration)\$(Platform)\sc.exe %(FullPath) $(SolutionDir)..\data\%(Filename).csh + $(SolutionDir)..\data\%(Filename).csh + $(SolutionDir)..\data\%(Filename).csh + $(SolutionDir)..\data\%(Filename).csh + $(SolutionDir)..\data\%(Filename).csh + $(SolutionDir)bin\sc\$(Configuration)\$(Platform)\sc.exe %(FullPath) $(SolutionDir)..\data\%(Filename).csh + $(SolutionDir)bin\sc\$(Configuration)\$(Platform)\sc.exe %(FullPath) $(SolutionDir)..\data\%(Filename).csh + $(SolutionDir)bin\sc\$(Configuration)\$(Platform)\sc.exe %(FullPath) $(SolutionDir)..\data\%(Filename).csh + $(SolutionDir)bin\sc\$(Configuration)\$(Platform)\sc.exe %(FullPath) $(SolutionDir)..\data\%(Filename).csh + + + Document + $(SolutionDir)bin\sc\$(Configuration)\$(Platform)\sc.exe %(FullPath) $(SolutionDir)..\data\%(Filename).csh + $(SolutionDir)bin\sc\$(Configuration)\$(Platform)\sc.exe %(FullPath) $(SolutionDir)..\data\%(Filename).csh + $(SolutionDir)bin\sc\$(Configuration)\$(Platform)\sc.exe %(FullPath) $(SolutionDir)..\data\%(Filename).csh + $(SolutionDir)bin\sc\$(Configuration)\$(Platform)\sc.exe %(FullPath) $(SolutionDir)..\data\%(Filename).csh + $(SolutionDir)bin\sc\$(Configuration)\$(Platform)\sc.exe %(FullPath) $(SolutionDir)..\data\%(Filename).csh + $(SolutionDir)bin\sc\$(Configuration)\$(Platform)\sc.exe %(FullPath) $(SolutionDir)..\data\%(Filename).csh + $(SolutionDir)bin\sc\$(Configuration)\$(Platform)\sc.exe %(FullPath) $(SolutionDir)..\data\%(Filename).csh + $(SolutionDir)bin\sc\$(Configuration)\$(Platform)\sc.exe %(FullPath) $(SolutionDir)..\data\%(Filename).csh + $(SolutionDir)..\data\%(Filename).csh + $(SolutionDir)..\data\%(Filename).csh + $(SolutionDir)..\data\%(Filename).csh + $(SolutionDir)..\data\%(Filename).csh + + + + + {86c58ec1-51ed-4ec6-85a4-2fdf153dd92a} + + + + + + \ No newline at end of file diff --git a/msbuild/shaders/shaders.vcxproj.filters b/msbuild/shaders/shaders.vcxproj.filters new file mode 100644 index 0000000..26396ea --- /dev/null +++ b/msbuild/shaders/shaders.vcxproj.filters @@ -0,0 +1,25 @@ + + + + + {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 + + + \ No newline at end of file diff --git a/msbuild/textures/textures.vcxproj b/msbuild/textures/textures.vcxproj new file mode 100644 index 0000000..72b1e1b --- /dev/null +++ b/msbuild/textures/textures.vcxproj @@ -0,0 +1,187 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 17.0 + Win32Proj + {0e0e5a6a-51c0-494d-8816-932422ade2ba} + textures + 10.0 + + + + Utility + true + v143 + Unicode + + + Utility + false + v143 + true + Unicode + + + Utility + true + v143 + Unicode + + + Utility + false + v143 + true + Unicode + + + + + + + + + + + + + + + + + + + + + $(SolutionDir)..\data\ + $(SolutionDir)obj\$(ProjectName)\$(Configuration)\$(Platform)\ + + + $(SolutionDir)..\data\ + $(SolutionDir)obj\$(ProjectName)\$(Configuration)\$(Platform)\ + + + $(SolutionDir)..\data\ + $(SolutionDir)obj\$(ProjectName)\$(Configuration)\$(Platform)\ + + + $(SolutionDir)..\data\ + $(SolutionDir)obj\$(ProjectName)\$(Configuration)\$(Platform)\ + + + + Level3 + true + WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + + + Console + true + + + $(SolutionDir)bin\convtexture\$(Configuration)\$(Platform)\convtexture.exe %(FullPath) $(SolutionDir)..\data\%(Filename).tex + $(SolutionDir)bin\convtexture\$(Configuration)\$(Platform)\convtexture.exe %(FullPath) $(SolutionDir)..\data\%(Filename).tex + $(SolutionDir)..\data\%(Filename).tex + + + + + Level3 + true + true + true + WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + + + Console + true + true + true + + + $(SolutionDir)bin\convtexture\$(Configuration)\$(Platform)\convtexture.exe %(FullPath) $(SolutionDir)..\data\%(Filename).tex + $(SolutionDir)bin\convtexture\$(Configuration)\$(Platform)\convtexture.exe %(FullPath) $(SolutionDir)..\data\%(Filename).tex + $(SolutionDir)..\data\%(Filename).tex + + + + + Level3 + true + _DEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + + + Console + true + + + $(SolutionDir)bin\convtexture\$(Configuration)\$(Platform)\convtexture.exe %(FullPath) $(SolutionDir)..\data\%(Filename).tex + $(SolutionDir)bin\convtexture\$(Configuration)\$(Platform)\convtexture.exe %(FullPath) $(SolutionDir)..\data\%(Filename).tex + $(SolutionDir)..\data\%(Filename).tex + + + + + Level3 + true + true + true + NDEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + + + Console + true + true + true + + + $(SolutionDir)bin\convtexture\$(Configuration)\$(Platform)\convtexture.exe %(FullPath) $(SolutionDir)..\data\%(Filename).tex + $(SolutionDir)bin\convtexture\$(Configuration)\$(Platform)\convtexture.exe %(FullPath) $(SolutionDir)..\data\%(Filename).tex + $(SolutionDir)..\data\%(Filename).tex + + + + + {21c708d3-6f35-4c2b-a53e-9e06d8220218} + + + + + $(SolutionDir)bin\convtexture\$(Configuration)\$(Platform)\convtexture.exe %(FullPath) $(SolutionDir)..\data\%(Filename).tex bc1 + $(SolutionDir)bin\convtexture\$(Configuration)\$(Platform)\convtexture.exe %(FullPath) $(SolutionDir)..\data\%(Filename).tex bc1 + $(SolutionDir)bin\convtexture\$(Configuration)\$(Platform)\convtexture.exe %(FullPath) $(SolutionDir)..\data\%(Filename).tex bc1 + $(SolutionDir)bin\convtexture\$(Configuration)\$(Platform)\convtexture.exe %(FullPath) $(SolutionDir)..\data\%(Filename).tex bc1 + + + $(SolutionDir)bin\convtexture\$(Configuration)\$(Platform)\convtexture.exe %(FullPath) $(SolutionDir)..\data\%(Filename).tex bc1 + $(SolutionDir)bin\convtexture\$(Configuration)\$(Platform)\convtexture.exe %(FullPath) $(SolutionDir)..\data\%(Filename).tex bc1 + $(SolutionDir)bin\convtexture\$(Configuration)\$(Platform)\convtexture.exe %(FullPath) $(SolutionDir)..\data\%(Filename).tex bc1 + $(SolutionDir)bin\convtexture\$(Configuration)\$(Platform)\convtexture.exe %(FullPath) $(SolutionDir)..\data\%(Filename).tex bc1 + + + + + + \ No newline at end of file diff --git a/msbuild/textures/textures.vcxproj.filters b/msbuild/textures/textures.vcxproj.filters new file mode 100644 index 0000000..4d9d1c3 --- /dev/null +++ b/msbuild/textures/textures.vcxproj.filters @@ -0,0 +1,25 @@ + + + + + {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 + + + \ No newline at end of file -- cgit v1.2.3-54-g00ecf