FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index Utilities / Utilidades vscode - building and running
Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
vscode - building and running
Posted: Mon Jul 15, 2019 12:33 PM
tasks.json
Code (fw): Select all Collapse
{
    // See <!-- m --><a class="postlink" href="https://go.microsoft.com/fwlink/?LinkId=733558">https://go.microsoft.com/fwlink/?LinkId=733558</a><!-- m -->
    // for the documentation about the tasks.json format
    "version": "2.0.0",
    "tasks": [
        {
            "label": "run",
            "type": "shell",
            "command": "./${fileBasenameNoExtension}",
            "dependsOn": [ "build" ],
            "problemMatcher": []
        },
        {
            "label": "build",
            "type": "shell",
            "command": "/Users/$USER/harbour/bin/darwin/clang/hbmk2",
            "args": [
                "${workspaceFolder}/${fileBasenameNoExtension}.prg"
            ]
        }
    ]
}
regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Re: vscode - building and running
Posted: Thu Jul 18, 2019 09:50 AM
regards, saludos

Antonio Linares
www.fivetechsoft.com

Continue the discussion