rpcsx/.vscode/tasks.json

20 lines
630 B
JSON
Raw Normal View History

2025-10-14 14:25:19 +02:00
{
"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)"
}
]
}