This article is for developers who want to contribute to the Qbs open source project.
As with most VS Code extensions, you'll need Node.JS installed. Also we use gulp to compile the code.
The process is:
-
Download the sources of the Qbs extension.
-
Open the source root Qbs extension folder in VS Code.
-
Call
npm install
at project root to install dependencies (this can be done from the VS Code terminal view). -
Call
npm run compile
to compile the extension. -
Call
npm run package
to build the whole extension package (including the localizations). -
Call
npm run clean
to cleanup the all generated output artifacts.
Code is formatted using clang-format
. We recommend
you install the Clang-Format extension.