Setting Up VSCode with CMake and MinGW on Windows for C/C++ Development
This guide walks through setting up a complete development environment on Windows using Visual Studio Code, MinGW, and CMake to build C/C++ projects from scratch.
Required Software Downloads
1.1 VSCode
Download from the official site: https://code.visualstudio.com/
Choose the appropriate architecture (64-bits standard for most modern Windows ...
Posted on Wed, 12 Aug 2026 16:32:52 +0000 by blmg911
Configuring C/C++ Development Environment in VS Code
VS Code functions as a text editer but can be transformed into a full-fledged C/C++ development environment by installing necessary extensions and configuring compiler paths. This setup enables code editing, compilation, and debugging similar to IDEs like Code::Blocks.
Required Software
VS Code
MinGW (GCC compiler for Windows)
Configuration S ...
Posted on Sun, 12 Jul 2026 17:12:42 +0000 by golden_water