35 lines
932 B
35 lines
932 B
5 months ago
|
{
|
||
|
"version": "2.0.0",
|
||
|
"windows": {
|
||
|
"options": {
|
||
|
"shell": {
|
||
|
"executable": "C:\\WINDOWS\\System32\\cmd.exe",
|
||
|
"args": [
|
||
|
"/C",
|
||
|
"E:\\Intel\\oneAPI\\2024.2\\oneapi-vars.bat",
|
||
|
"&&",
|
||
|
]
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
"tasks": [
|
||
|
{
|
||
|
"label": "configure-release",
|
||
|
"type": "shell",
|
||
|
"command": "xmake config -p windows -m release",
|
||
|
"problemMatcher": []
|
||
|
},
|
||
|
{
|
||
|
"label": "configure-debug",
|
||
|
"type": "shell",
|
||
|
"command": "xmake config -p windows -m debug",
|
||
|
"problemMatcher": []
|
||
|
},
|
||
|
{
|
||
|
"label": "update compile_commands",
|
||
|
"type": "shell",
|
||
|
"command": "xmake project -k compile_commands .vscode",
|
||
|
"problemMatcher": []
|
||
|
}
|
||
|
]
|
||
|
}
|