hello, I want to use ‘ws2_32.lib’, but I opened Project properties, I didn’t found linker menu.
You will need to add the library to your .build.cs for the plugin or project you are wanting to use the library with.
PublicAdditionalLibraries.Add(Path.Combine(ModuleDirectory, relative_path_to_your_lib, "ws2_32.lib.lib"));
If you have any includes with your .lib you can add them like so:
PublicIncludePaths.Add(Path.Combine(ModuleDirectory, relative_path_to_your_includes));