วิธีใช้งานเดี่ยวเพื่อรวบรวมทุกอย่างใน VS Code?
ฉันกำลังพยายามทำให้ชีวิตของฉันง่ายขึ้นโดยใช้ภารกิจเดียวในการรวบรวมและเรียกใช้ไฟล์ทั้งหมดของฉัน ฉันมีสิ่งนี้สำหรับ c ++: "label": "g++run", "type": "shell", "dependsOn": ["g++run:compile"], "command": "${fileDirname}\\${fileBasenameNoExtension}.exe", "presentation": {"echo": false, "clear": true, "reveal": "always", "focus": true, "panel": "dedicated"} "label": "g++run:compile", "type": "shell", "command": "g++", "args": ["-std=c++11", "-g", "${fileDirname}\\${fileBasename}", "-o", "${fileDirname}\\${fileBasenameNoExtension}"], "presentation": {"echo": false, "clear": true, "reveal": "always", "focus": false, "panel": "dedicated"} มีวิธีใดบ้างที่จะใช้ข้อความสั่งแบบมีเงื่อนไขบางส่วนที่อิงกับส่วนขยาย ($ {fileExtname}) เพื่อให้ฉันตัดสินใจว่างานรวบรวมที่ฉันต้องการเรียกใช้คืออะไร …