Using Visual Studio Code and MSFT own C/C++ extension (ms-vscode.cpptools
), one can edit C/C++ easily within Windows, with good syntax highlight and incredible intellisense support, without the need to install Visual Studio.
Using Visual C++ Build Tools, one can do C/C++ compilations within windows (although, admittedly, the absence of make
and the need to use MSBuild results in a certain difficulty for complex projects).
However I haven't been able to configure VSCode to use the tools and building means going to the command line. Does anyone have a tutorial and know the main steps to take in order to achieve a simple integration?
Please note that I'm asking about using Visual C++ Build Tools for Windows.