RTSA-lab01-CacheAnalysis/.vscode/tasks.json

19 lines
555 B
JSON
Raw Permalink Normal View History

2022-04-20 10:15:56 +02:00
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
2022-07-15 09:42:04 +02:00
{
"label": "config",
"type": "shell",
"command": "rm -r build ; rm complile_commands.json ; mkdir build ; cd build ; cmake -G Ninja -DCMAKE_BUILD_TYPE=Debug -DCMAKE_EXPORT_COMPILE_COMMANDS=1 -DLT_LLVM_INSTALL_DIR=$LLVM_DIR ..",
"group": "build"
},
2022-04-20 10:15:56 +02:00
{
"label": "build",
"type": "shell",
2022-07-15 09:42:04 +02:00
"command": " cd build ; ninja ",
2022-04-20 10:15:56 +02:00
"group": "build"
},
]
}