diff --git a/.vscode/launch.json b/.vscode/launch.json index f99b0e7..da7ca95 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -18,6 +18,7 @@ "program": "${workspaceFolder}/build/bin/editor", "args": [], "cwd": "${workspaceFolder}", + "preLaunchTask": "buildDebug" }, { "type": "lldb", diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..33971e5 --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,11 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "label": "buildDebug", + "type": "process", + "command": "cmake", + "args": ["--build", "build", "-j16"] + } + ] +} \ No newline at end of file