# HG changeset patch # User Mike Becker # Date 1730217180 -3600 # Node ID dc53362bc5a75930f2907cafd7e04da12d433fca # Parent 8f6d6556380a73effb2f6f67129b50e627895cd0 add msvc support diff -r 8f6d6556380a -r dc53362bc5a7 .hgignore --- a/.hgignore Tue Oct 29 16:47:40 2024 +0100 +++ b/.hgignore Tue Oct 29 16:53:00 2024 +0100 @@ -1,5 +1,8 @@ +syntax:glob nbproject/ .idea/ +.vs/ +*.vcxproj.user build/ dist/ config.mk diff -r 8f6d6556380a -r dc53362bc5a7 msvc/libucx/libucx.vcxproj --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/msvc/libucx/libucx.vcxproj Tue Oct 29 16:53:00 2024 +0100 @@ -0,0 +1,245 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 17.0 + Win32Proj + {a7ee56a3-0bad-4cab-9354-7fae2a65e276} + libucx + 10.0 + + + + StaticLibrary + true + v143 + Unicode + + + StaticLibrary + false + v143 + true + Unicode + + + StaticLibrary + true + v143 + Unicode + + + StaticLibrary + false + v143 + true + Unicode + + + + + + + + + + + + + + + + + + + + + build\$(Platform)\$(Configuration)\ + $(SolutionDir)..\build\msvc\$(Platform)\$(Configuration)\ + + + build\$(Platform)\$(Configuration)\ + $(SolutionDir)..\build\msvc\$(Platform)\$(Configuration)\ + + + build\$(Platform)\$(Configuration)\ + $(SolutionDir)..\build\msvc\$(Platform)\$(Configuration)\ + + + build\$(Platform)\$(Configuration)\ + $(SolutionDir)..\build\msvc\$(Platform)\$(Configuration)\ + + + + Level3 + true + WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions) + true + NotUsing + + + stdc17 + CompileAsC + + + + + + + true + + + + + + + + + + + Level3 + true + true + true + WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions) + true + NotUsing + + + stdc17 + CompileAsC + + + + + + + true + true + true + + + + + + + + + + + Level3 + true + _DEBUG;_LIB;%(PreprocessorDefinitions) + true + NotUsing + + + stdc17 + CompileAsC + + + + + + + true + + + + + + + + + + + Level3 + true + true + true + NDEBUG;_LIB;%(PreprocessorDefinitions) + true + NotUsing + + + stdc17 + CompileAsC + + + + + + + true + true + true + + + + + + + + + + + + \ No newline at end of file diff -r 8f6d6556380a -r dc53362bc5a7 msvc/libucx/libucx.vcxproj.filters --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/msvc/libucx/libucx.vcxproj.filters Tue Oct 29 16:53:00 2024 +0100 @@ -0,0 +1,128 @@ + + + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hh;hpp;hxx;h++;hm;inl;inc;ipp;xsd + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;c++;cppm;ixx;def;odl;idl;hpj;bat;asm;asmx + + + + + Header + + + Header + + + Header + + + Header + + + Header + + + Header + + + Header + + + Header + + + Header + + + Header + + + Header + + + Header + + + Header + + + Header + + + Header + + + Header + + + Header + + + Header + + + Header + + + Header + + + + + Source + + + Source + + + Source + + + Source + + + Source + + + Source + + + Source + + + Source + + + Source + + + Source + + + Source + + + Source + + + Source + + + Source + + + Source + + + Source + + + Source + + + \ No newline at end of file diff -r 8f6d6556380a -r dc53362bc5a7 msvc/ucx.sln --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/msvc/ucx.sln Tue Oct 29 16:53:00 2024 +0100 @@ -0,0 +1,41 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.11.35327.3 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libucx", "libucx\libucx.vcxproj", "{A7EE56A3-0BAD-4CAB-9354-7FAE2A65E276}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ucxtest", "ucxtest\ucxtest.vcxproj", "{56337F37-5298-49C4-B4D4-B43C1B2900F0}" +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 + {A7EE56A3-0BAD-4CAB-9354-7FAE2A65E276}.Debug|x64.ActiveCfg = Debug|x64 + {A7EE56A3-0BAD-4CAB-9354-7FAE2A65E276}.Debug|x64.Build.0 = Debug|x64 + {A7EE56A3-0BAD-4CAB-9354-7FAE2A65E276}.Debug|x86.ActiveCfg = Debug|Win32 + {A7EE56A3-0BAD-4CAB-9354-7FAE2A65E276}.Debug|x86.Build.0 = Debug|Win32 + {A7EE56A3-0BAD-4CAB-9354-7FAE2A65E276}.Release|x64.ActiveCfg = Release|x64 + {A7EE56A3-0BAD-4CAB-9354-7FAE2A65E276}.Release|x64.Build.0 = Release|x64 + {A7EE56A3-0BAD-4CAB-9354-7FAE2A65E276}.Release|x86.ActiveCfg = Release|Win32 + {A7EE56A3-0BAD-4CAB-9354-7FAE2A65E276}.Release|x86.Build.0 = Release|Win32 + {56337F37-5298-49C4-B4D4-B43C1B2900F0}.Debug|x64.ActiveCfg = Debug|x64 + {56337F37-5298-49C4-B4D4-B43C1B2900F0}.Debug|x64.Build.0 = Debug|x64 + {56337F37-5298-49C4-B4D4-B43C1B2900F0}.Debug|x86.ActiveCfg = Debug|Win32 + {56337F37-5298-49C4-B4D4-B43C1B2900F0}.Debug|x86.Build.0 = Debug|Win32 + {56337F37-5298-49C4-B4D4-B43C1B2900F0}.Release|x64.ActiveCfg = Release|x64 + {56337F37-5298-49C4-B4D4-B43C1B2900F0}.Release|x64.Build.0 = Release|x64 + {56337F37-5298-49C4-B4D4-B43C1B2900F0}.Release|x86.ActiveCfg = Release|Win32 + {56337F37-5298-49C4-B4D4-B43C1B2900F0}.Release|x86.Build.0 = Release|Win32 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {C0EC0D10-D742-41ED-ACB4-E88AAF27C9C1} + EndGlobalSection +EndGlobal diff -r 8f6d6556380a -r dc53362bc5a7 msvc/ucxtest/ucxtest.vcxproj --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/msvc/ucxtest/ucxtest.vcxproj Tue Oct 29 16:53:00 2024 +0100 @@ -0,0 +1,194 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + + + + + + + + + + + + + + + + + + + + + + + {a7ee56a3-0bad-4cab-9354-7fae2a65e276} + + + + 17.0 + Win32Proj + {56337f37-5298-49c4-b4d4-b43c1b2900f0} + ucxtest + 10.0 + + + + Application + true + v143 + Unicode + + + Application + false + v143 + true + Unicode + + + Application + true + v143 + Unicode + + + Application + false + v143 + true + Unicode + + + + + + + + + + + + + + + + + + + + + $(SolutionDir)..\build\msvc\$(Platform)\$(Configuration)\ + build\$(Platform)\$(Configuration)\ + + + $(SolutionDir)..\build\msvc\$(Platform)\$(Configuration)\ + build\$(Platform)\$(Configuration)\ + + + $(SolutionDir)..\build\msvc\$(Platform)\$(Configuration)\ + build\$(Platform)\$(Configuration)\ + + + $(SolutionDir)..\build\msvc\$(Platform)\$(Configuration)\ + build\$(Platform)\$(Configuration)\ + + + + Level3 + true + WIN32;_DEBUG;_CONSOLE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + true + stdc17 + $(SolutionDir)..\src\ + CompileAsC + + + Console + true + $(OutputPath) + libucx.lib;$(CoreLibraryDependencies);%(AdditionalDependencies) + + + + + Level3 + true + true + true + WIN32;NDEBUG;_CONSOLE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + true + stdc17 + $(SolutionDir)..\src\ + CompileAsC + + + Console + true + true + true + $(OutputPath) + libucx.lib;$(CoreLibraryDependencies);%(AdditionalDependencies) + + + + + Level3 + true + _DEBUG;_CONSOLE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + true + stdc17 + $(SolutionDir)..\src\ + CompileAsC + + + Console + true + $(OutputPath) + libucx.lib;$(CoreLibraryDependencies);%(AdditionalDependencies) + + + + + Level3 + true + true + true + NDEBUG;_CONSOLE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + true + stdc17 + $(SolutionDir)..\src\ + CompileAsC + + + Console + true + true + true + $(OutputPath) + libucx.lib;$(CoreLibraryDependencies);%(AdditionalDependencies) + + + + + + \ No newline at end of file diff -r 8f6d6556380a -r dc53362bc5a7 msvc/ucxtest/ucxtest.vcxproj.filters --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/msvc/ucxtest/ucxtest.vcxproj.filters Tue Oct 29 16:53:00 2024 +0100 @@ -0,0 +1,68 @@ + + + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hh;hpp;hxx;h++;hm;inl;inc;ipp;xsd + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;c++;cppm;ixx;def;odl;idl;hpj;bat;asm;asmx + + + + + Source + + + Source + + + Source + + + Source + + + Source + + + Source + + + Source + + + Source + + + Source + + + Source + + + Source + + + Source + + + Source + + + Source + + + Source + + + Source + + + + + Header + + + \ No newline at end of file