[Solved] How can I run a c++ script in debug in visual studio code? [closed]

Good evening Tanozar, the problems are probably due to: – task.json “tasks”: [ { “type”: “shell”, “label”: “g++ build active file”, “command”: “/usr/bin/g++”, “args”: [ “-g”, “${file}”, “`pkg-config”, “–cflags”, “–libs”, “opencv4`”, “-lcfitsio”, “-lcurl”, “-o”, “${fileDirname}/${fileBasenameNoExtension}”, “-lboost_iostreams”, “-lboost_system”, “-lboost_filesystem”, “-lpython2.7”, “-lm”, “-L/usr/lib/python2.7/config/”, “-I/usr/include/python2.7/ “, ], “options”: { “cwd”: “/usr/bin” }, “problemMatcher”: [ “$gcc” ], “group”: “build” … Read more