Thu, 25 Sep 2025 14:49:48 +0200
add kv-list files to MSVC project files
resolves #461 for MSVC
--- a/msvc/libucx/libucx.vcxproj Thu Sep 25 14:49:26 2025 +0200 +++ b/msvc/libucx/libucx.vcxproj Thu Sep 25 14:49:48 2025 +0200 @@ -32,6 +32,7 @@ <ClInclude Include="..\..\src\cx\linked_list.h" /> <ClInclude Include="..\..\src\cx\list.h" /> <ClInclude Include="..\..\src\cx\map.h" /> + <ClInclude Include="..\..\src\cx\kv_list.h" /> <ClInclude Include="..\..\src\cx\mempool.h" /> <ClInclude Include="..\..\src\cx\printf.h" /> <ClInclude Include="..\..\src\cx\properties.h" /> @@ -52,6 +53,7 @@ <ClCompile Include="..\..\src\linked_list.c" /> <ClCompile Include="..\..\src\list.c" /> <ClCompile Include="..\..\src\map.c" /> + <ClCompile Include="..\..\src\kv_list.c" /> <ClCompile Include="..\..\src\mempool.c" /> <ClCompile Include="..\..\src\printf.c" /> <ClCompile Include="..\..\src\properties.c" />
--- a/msvc/libucx/libucx.vcxproj.filters Thu Sep 25 14:49:26 2025 +0200 +++ b/msvc/libucx/libucx.vcxproj.filters Thu Sep 25 14:49:48 2025 +0200 @@ -50,6 +50,9 @@ <ClInclude Include="..\..\src\cx\map.h"> <Filter>Header</Filter> </ClInclude> + <ClInclude Include="..\..\src\cx\kv_list.h"> + <Filter>Header</Filter> + </ClInclude> <ClInclude Include="..\..\src\cx\mempool.h"> <Filter>Header</Filter> </ClInclude> @@ -106,6 +109,9 @@ <ClCompile Include="..\..\src\map.c"> <Filter>Source</Filter> </ClCompile> + <ClCompile Include="..\..\src\kv_list.c"> + <Filter>Source</Filter> + </ClCompile> <ClCompile Include="..\..\src\mempool.c"> <Filter>Source</Filter> </ClCompile>
--- a/msvc/libucx_dll/libucx_dll.vcxproj Thu Sep 25 14:49:26 2025 +0200 +++ b/msvc/libucx_dll/libucx_dll.vcxproj Thu Sep 25 14:49:48 2025 +0200 @@ -32,6 +32,7 @@ <ClInclude Include="..\..\src\cx\linked_list.h" /> <ClInclude Include="..\..\src\cx\list.h" /> <ClInclude Include="..\..\src\cx\map.h" /> + <ClInclude Include="..\..\src\cx\kv_list.h" /> <ClInclude Include="..\..\src\cx\mempool.h" /> <ClInclude Include="..\..\src\cx\printf.h" /> <ClInclude Include="..\..\src\cx\properties.h" /> @@ -52,6 +53,7 @@ <ClCompile Include="..\..\src\linked_list.c" /> <ClCompile Include="..\..\src\list.c" /> <ClCompile Include="..\..\src\map.c" /> + <ClCompile Include="..\..\src\kv_list.c" /> <ClCompile Include="..\..\src\mempool.c" /> <ClCompile Include="..\..\src\printf.c" /> <ClCompile Include="..\..\src\properties.c" />
--- a/msvc/libucx_dll/libucx_dll.vcxproj.filters Thu Sep 25 14:49:26 2025 +0200 +++ b/msvc/libucx_dll/libucx_dll.vcxproj.filters Thu Sep 25 14:49:48 2025 +0200 @@ -50,6 +50,9 @@ <ClInclude Include="..\..\src\cx\map.h"> <Filter>Header</Filter> </ClInclude> + <ClInclude Include="..\..\src\cx\kv_list.h"> + <Filter>Header</Filter> + </ClInclude> <ClInclude Include="..\..\src\cx\mempool.h"> <Filter>Header</Filter> </ClInclude> @@ -106,6 +109,9 @@ <ClCompile Include="..\..\src\map.c"> <Filter>Source</Filter> </ClCompile> + <ClCompile Include="..\..\src\kv_list.c"> + <Filter>Source</Filter> + </ClCompile> <ClCompile Include="..\..\src\mempool.c"> <Filter>Source</Filter> </ClCompile>
--- a/msvc/ucxtest/ucxtest.vcxproj Thu Sep 25 14:49:26 2025 +0200 +++ b/msvc/ucxtest/ucxtest.vcxproj Thu Sep 25 14:49:48 2025 +0200 @@ -27,6 +27,7 @@ <ClCompile Include="..\..\tests\test_iterator.c" /> <ClCompile Include="..\..\tests\test_json.c" /> <ClCompile Include="..\..\tests\test_list.c" /> + <ClCompile Include="..\..\tests\test_kv_list.c" /> <ClCompile Include="..\..\tests\test_mempool.c" /> <ClCompile Include="..\..\tests\test_printf.c" /> <ClCompile Include="..\..\tests\test_properties.c" />
--- a/msvc/ucxtest/ucxtest.vcxproj.filters Thu Sep 25 14:49:26 2025 +0200 +++ b/msvc/ucxtest/ucxtest.vcxproj.filters Thu Sep 25 14:49:48 2025 +0200 @@ -35,6 +35,9 @@ <ClCompile Include="..\..\tests\test_list.c"> <Filter>Source</Filter> </ClCompile> + <ClCompile Include="..\..\tests\test_kv_list.c"> + <Filter>Source</Filter> + </ClCompile> <ClCompile Include="..\..\tests\test_mempool.c"> <Filter>Source</Filter> </ClCompile>
--- a/msvc/ucxtest_dll/ucxtest_dll.vcxproj Thu Sep 25 14:49:26 2025 +0200 +++ b/msvc/ucxtest_dll/ucxtest_dll.vcxproj Thu Sep 25 14:49:48 2025 +0200 @@ -27,6 +27,7 @@ <ClCompile Include="..\..\tests\test_iterator.c" /> <ClCompile Include="..\..\tests\test_json.c" /> <ClCompile Include="..\..\tests\test_list.c" /> + <ClCompile Include="..\..\tests\test_kv_list.c" /> <ClCompile Include="..\..\tests\test_mempool.c" /> <ClCompile Include="..\..\tests\test_printf.c" /> <ClCompile Include="..\..\tests\test_properties.c" />
--- a/msvc/ucxtest_dll/ucxtest_dll.vcxproj.filters Thu Sep 25 14:49:26 2025 +0200 +++ b/msvc/ucxtest_dll/ucxtest_dll.vcxproj.filters Thu Sep 25 14:49:48 2025 +0200 @@ -35,6 +35,9 @@ <ClCompile Include="..\..\tests\test_list.c"> <Filter>Source</Filter> </ClCompile> + <ClCompile Include="..\..\tests\test_kv_list.c"> + <Filter>Source</Filter> + </ClCompile> <ClCompile Include="..\..\tests\test_mempool.c"> <Filter>Source</Filter> </ClCompile>