diff --git a/.vscode/tasks.json b/.vscode/tasks.json index e7d4f67..5d687a3 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -6,7 +6,7 @@ { "label": "build", "type": "shell", - "command": "cd build ; cmake -G Ninja -DCMAKE_BUILD_TYPE=Debug -DCMAKE_EXPORT_COMPILE_COMMANDS=1 -DLT_LLVM_INSTALL_DIR=$LLVM_DIR ../CacheAnalysisPass/ ; ninja", + "command": "./helper.sh all", "group": "build" }, ] diff --git a/helper.sh b/helper.sh index 3c55765..42a9c81 100755 --- a/helper.sh +++ b/helper.sh @@ -154,6 +154,7 @@ case $1 in a | all) clean config + cd build ninja echo "==== Done! ====" ;;