I currently have my VSCode C++ environment setup using mingw. I'm attempting to start playing with the winsock library, but I'm caught up at creating the build environment, since I've used an IDE for the most part in the past.
Step 2 from Microsofts documentation states: "Ensure that the build environment refers to the Include, Lib, and Src directories of the Microsoft Windows Software Development Kit (SDK) or the earlier Platform Software Development Kit (SDK)."
Does this just mean to throw these in a folder in the project and #include them somehow? Then
Step 3 from Microsofts documentation states: "Ensure that the build environment links to the Winsock Library file Ws2_32.lib. "
Again, I'm not quite sure how to link to the Winsock library file, or if that just means have a folder with it. I'm new to creating projects.