Я нашел вопрос здесь , который довольно близок, но с тех пор расширение C ++ было обновлено, и файл launch.json
, созданный для вас, сильно отличается, и я не уверен, какнастроить это. В Интернете также не так много информации, чтобы сделать это, поэтому я надеюсь, что кто-то делал это раньше. Моя текущая структура проекта выглядит следующим образом:
MainProj
./build
CMakeLists.txt
main.cpp
otherClasses.hpp
И цель cmake, которая появляется в build
после выполнения ..cmake
и make
, называется Main
.
launch.json
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "g++ build and debug active file",
"type": "cppdbg",
"request": "launch",
"program": "${fileDirname}/${fileBasenameNoExtension}",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
],
"preLaunchTask": "g++ build active file",
"miDebuggerPath": "/usr/bin/gdb"
}
]
}
Это файл tasks.json из другого вопроса
{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"type": "shell",
"command": "cd build && cmake .. && make"
}
]
}