- CMake
- CMake tools for VSCode
- C/C++ tools for VSCode
- Compilers and debuggers
- Visual Studio (To run its build tools and debugger) on windows, or MinGW or...
- GCC / Clang or whatever cmake can be configured and work with
- Open the project in code
- In command palette run
>cmake:configure
- Choose a kit (
Visual Studio Community 2019 Release
for Windows)
- Build target with
>cmake:build
- Debug and Run with
>cmake:debug
or>cmake:Run without debugging
Look at the bottoms statusbar and learn
- After you add/remove a file, run
cmake:configure