rpcsx/.vscode/tasks.json
2025-10-15 18:46:25 +03:00

20 lines
630 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"type": "shell",
"label": "Prepare debug",
"command": "cmake -B build -DCMAKE_BUILD_TYPE=Debug -DCMAKE_CXX_FLAGS_INIT=\"-march=native\" -DCMAKE_CXX_COMPILER=g++-14"
},
{
"type": "shell",
"label": "Prepare release",
"command": "cmake -B build -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_FLAGS_INIT=\"-march=native\" -DCMAKE_CXX_COMPILER=g++-14"
},
{
"type": "shell",
"label": "Build",
"command": "cmake --build build -j$(nproc)"
}
]
}