summaryrefslogblamecommitdiffstats
path: root/.vscode/tasks.json
blob: 0f610d5fc9ad404e35672de78ca4ea43d3bf0943 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
 








                                         






                                         
               
              








                                                      



















                                                        




                                         





































                                                         



                    
{
  "tasks": [
    {
      "args": ["--with-librw", "gmake2"],
      "command": "./premake5Linux",
      "label": "Premake (Linux)",
      "problemMatcher": "$gcc",
      "type": "shell"
    },
    {
      "args": ["--with-librw", "gmake2"],
      "command": "premake5",
      "label": "Premake (macOS)",
      "problemMatcher": "$gcc",
      "type": "shell"
    },
    {
      "args": [
        "-j5",
        "config=debug_linux-amd64-librw_gl3_glfw-oal",
        "verbose=1"
      ],
      "command": "make",
      "dependsOn": "Premake (Linux)",
      "group": {
        "isDefault": true,
        "kind": "build"
      },
      "label": "Compile (Debug Linux x64)",
      "options": {
        "cwd": "${workspaceFolder}/build"
      },
      "problemMatcher": "$gcc",
      "type": "shell"
    },
    {
      "args": [
        "-j5",
        "config=release_linux-amd64-librw_gl3_glfw-oal",
        "verbose=1"
      ],
      "command": "make",
      "dependsOn": "Premake (Linux)",
      "group": {
        "isDefault": true,
        "kind": "build"
      },
      "label": "Compile (Release Linux x64)",
      "options": {
        "cwd": "${workspaceFolder}/build"
      },
      "problemMatcher": "$gcc",
      "type": "shell"
    },
    {
      "args": [
        "-j5",
        "config=debug_macosx-amd64-librw_gl3_glfw-oal",
        "verbose=1"
      ],
      "command": "make",
      "dependsOn": "Premake (macOS)",
      "group": {
        "isDefault": true,
        "kind": "build"
      },
      "label": "Compile (Debug macOS x64)",
      "options": {
        "cwd": "${workspaceFolder}/build"
      },
      "problemMatcher": "$gcc",
      "type": "shell"
    },
    {
      "args": [
        "-j5",
        "config=release_macosx-amd64-librw_gl3_glfw-oal",
        "verbose=1"
      ],
      "command": "make",
      "dependsOn": "Premake (macOS)",
      "group": {
        "isDefault": true,
        "kind": "build"
      },
      "label": "Compile (Release macOS x64)",
      "options": {
        "cwd": "${workspaceFolder}/build"
      },
      "problemMatcher": "$gcc",
      "type": "shell"
    }
  ],
  "version": "2.0.0"
}