This is an extremely accurate and working explanation of how to make a debag. It was extremely useful for me! Thanks!
@codingwithmat2 жыл бұрын
Thank you for watching!
@lanl2qz2 ай бұрын
Best hands on useful tutorial on this topic!
@codingwithmatАй бұрын
Thanks! I hope it helps out the C++ new comers :D
@ekanshsharma15073 ай бұрын
Thanks for being concise, and helpful. Still works :)
@codingwithmat3 ай бұрын
You should check out the new video, it explains how to do this in a better way. Link in the description!
@mayaambalapat36716 ай бұрын
Very concise and helpful video
@codingwithmat6 ай бұрын
thanks for watching :)
@petrasvestartas43592 жыл бұрын
Thank you! Works perfectly on Windows VSCode CMake Ninja Debug
@codingwithmat2 жыл бұрын
Glad you liked the video & that it worked perfectly! Thanks for watching
@TheAshok197820 күн бұрын
Thanks for this contribution, really helped me moving.
@codingwithmat19 күн бұрын
Thanks for watching! Hope your C++ and CMake journey is a little bit easier now :)
@nhatlequocnhat71832 жыл бұрын
Very clear, Big Thanks !
@codingwithmat2 жыл бұрын
Thank you for watching, my friend!
@bananbiff2 жыл бұрын
Really great, thanks!!
@codingwithmat2 жыл бұрын
Thanks for watching! Glad you liked it.
@zbesh Жыл бұрын
great explanation
@codingwithmat Жыл бұрын
Thank you for watching!
@MinhNguyen-b6l4x10 ай бұрын
Thank you ❤
@ΣτεφανοςΓκικας-υ1η Жыл бұрын
really useful video!
@codingwithmat Жыл бұрын
Thank you for watching! Glad it helped you :)
@abdosaleh60582 жыл бұрын
Very helpful indeed but i kept getting some launch .jason files and i know its from my end but i cant figure it out
@codingwithmat2 жыл бұрын
Do you mean you have multiple launch.json files in your solution? If you have a shared project (perhaps through git), could the repository already have a "launch.json" file? AFAIK, you should only have one file in the workspace, unless VScode has support for multiple ones. For example, settings.yml is supported at a project level, user level and global level so you can have multiple of those, I'm not sure if it's the same for "launch.json". I recommend reading the documentation on it to find out: code.visualstudio.com/docs/editor/debugging
@abdosaleh60582 жыл бұрын
@@codingwithmat I'm willing to pay you something for your trouble if u can help me set it up on my pc, we can talk the details on discord if you like, what do you say ??
@codingwithmat2 жыл бұрын
@@abdosaleh6058 Hey, I don't want to charge you at all, but I can help on my discord discord.gg/jBd7wEmA .
@srenkrusepedersen323510 ай бұрын
Seems like the configuration in launch.json is obsolete. @codingwithmat can you confirm and provide an updated version ?
@codingwithmat10 ай бұрын
Thank you! Yeah it's probably an old config. I'll redo an updated video !
@AbdelsatarElmezayen Жыл бұрын
I did the same on linux, but to create a jason file, the C++ debugger doesn't exist
@Brumus14 Жыл бұрын
thank you very helpful .
@jmikhailov2 жыл бұрын
cheers mate thanks for the help
@codingwithmat2 жыл бұрын
Thank you for watching, god to know it worked for u :)
@ahmednader3812 жыл бұрын
Life saver!
@codingwithmat2 жыл бұрын
Glad u liked it!
@ahmednader3812 жыл бұрын
@@codingwithmat Any idea how I could configure this json automatically with each project in cmakelists?
@codingwithmat2 жыл бұрын
@@ahmednader381 If I understand right, you want to tell your CmakeLists.txt to configure a launch.json for you? I don't think this is possible with the current CMake version. Unfortunately, you're going to have to write a debug configuration for every test case you want to debug.