Here is my template repository of building a CMake-CXX project (with CUDA): VSC-CMake-CXX-Project-Template !
Suppose that you are managing your project with CMake. To build an executable, first write all your build commands in a bash script. For example, create a new file “./scripts/build.sh”:
1
2
3
| build_type=$1
cmake -S . -B ./build -DCMAKE_BUILD_TYPE=$build_type
cmake --build ./build -j $(nproc)
|
Second, add the following code to “./.vscode/tasks.json” (create the file if it does not exist):
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| {
"version": "2.0.0",
"tasks": [
// Other tasks...,
{
// Task name, anything you want, must match the preLaunchTask in
// launch.json
"label": "Build: Debug 01",
"type": "shell",
// Command: bash <script> <args...>
"command": "bash",
"args": [
// Your build script path
"${workspaceFolder}/scripts/build.sh",
// Build script arguments
"Debug"
],
"group": "build"
},
// Other tasks...
]
}
|
Next, add the following code to “./.vscode/launch.json” (create the file if it does not exist):
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
| {
"version": "0.2.0",
"configurations": [
// Other configurations...,
{
// Launch configuration name, anything you want
"name": "Launch: Debug 01",
"type": "cppdbg",
"request": "launch",
// Path to the generated executable
"program": "${workspaceFolder}/<path-to-generated-executable>",
// Arguments to pass to the program
"args": [
"arg1",
"arg2",
// Other arguments...
],
"externalConsole": false,
"stopAtEntry": false,
// Working directory
"cwd": "${workspaceFolder}",
// MIMode should be "gdb" for gdb, "lldb" for lldb
"MIMode": "gdb",
// Path to the gdb executable
// Change this to lldb path if you are using lldb
"miDebuggerPath": "/usr/bin/gdb",
// Pre-launch task, make sure it matches the task label in
// tasks.json
"preLaunchTask": "Build: Debug 01",
// Environment variables
"environment": [
// This is an example of adding a path to the PATH environment
// variable
{
"name": "PATH",
"value": "<some-path>:${env:PATH}"
}
],
"setupCommands": [
{
"description": "Enable pretty-printing for gdb/lldb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
],
},
// Other configurations...,
]
}
|
Finally, click on the “Run and Debug” icon on the left sidebar, choose the configuration with the name you specified in “launch.json”, then click on the green play button to start debugging.