Basic C and C++ Windows Setup (MSYS2 + Git + VSCodium + CMake + Make + Library Install)

Опубликовано: 15 Апрель 2026
на канале: HerbGlitch
3,550
60

Timestamps:
0:00 Intro
0:21 MSYS2 Install
1:18 MSYS2 Add To Path
2:06 Git Install
2:18 VSCodium Install
2:32 CMake Install
2:45 Make Install
3:41 Library Install (example with SDL2)

//I am active on discord and happy to help if you run into any issues (programming related)
Discord:   / discord  

//msys2 install
winget install MSYS2.MSYS2

//msys2 ucrt pacman install
pacman -S mingw-w64-ucrt-x86_64-gcc

//msys2 x86_64 install (I think this one works for sfml)
pacman -S mingw-w64-x86_64-gcc

//git install
winget install Git.Git

//vscodium install
winget install VSCodium.VSCodium

//cmake install
winget install Kitware.CMake

//MSYS2 package page
https://packages.msys2.org/package/

//main.cpp (SDL2 basic example code)
https://github.com/herbglitchYT/Windo...