mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-03 23:30:02 +01:00
20 lines
630 B
JSON
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)"
|
|
}
|
|
]
|
|
} |