• Fichier: tasks.json
  • Path: /dungeon_ascii/DungeonASCII/.vscode/tasks.json
  • File size: 691 bytes
  • MIME-type: application/json
  • Charset: utf-8
 
Retour
{
    "tasks": [
        {
            "type": "cppbuild",
            "label": "Build: Crosscompile Windows",
            "command": "x86_64-w64-mingw32-g++",
            "args": [
                "-fdiagnostics-color=always",
                "-static",
                "${workspaceFolder}/*.cpp",
                "-o",
                "${workspaceFolder}/build/DungeonASCII.exe"
            ],
            "options": {
                "cwd": "${fileDirname}"
            },
            "problemMatcher": [
                "$gcc"
            ],
            "group": {
                "kind": "build",
                "isDefault": true
            }
        }
    ],
    "version": "2.0.0"
}