-
Notifications
You must be signed in to change notification settings - Fork 0
/
tasks.json
40 lines (40 loc) · 1.11 KB
/
tasks.json
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
{
"version": "2.0.0",
"tasks": [
{
"label": "create default conan profile",
"type": "shell",
"command": "conan profile detect",
"problemMatcher": []
},
{
"label": "clangd compile commands symlink (Release)",
"type": "shell",
"command": "ln -s ${workspaceFolder}/build/Release/compile_commands.json ${workspaceFolder}",
"problemMatcher": []
},
{
"label": "conan create",
"type": "shell",
"command": "conan create . --build missing",
"problemMatcher": []
},
{
"label": "conan create (no tests)",
"type": "shell",
"command": "conan create . -c tools.build:skip_test=True --build missing"
},
{
"label": "conan install",
"type": "shell",
"command": "conan install . --name hello_world --version 1.0.0 --user hello --channel stable --build missing",
"problemMatcher": []
},
{
"label": "conan build",
"type": "shell",
"command": "conan build .",
"problemMatcher": []
}
]
}