Skip to content

Commit

Permalink
Merge pull request #12 from ckandeler/master
Browse files Browse the repository at this point in the history
Add qbs file, edit top-level Readme
  • Loading branch information
denis-shienkov authored Oct 22, 2020
2 parents 042c21e + c49a439 commit c9fe518
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 11 deletions.
21 changes: 10 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,25 +1,24 @@
# QBS
# Qbs

This extension provides support for [QBS](https://doc.qt.io/qbs/)
build system in [Visual Studio Code](https://code.visualstudio.com/).
This extension provides support for the [Qbs](https://doc.qt.io/qbs/)
build tool in [Visual Studio Code](https://code.visualstudio.com/).

This build system is a modern, powerfull, and scalable tool intended
to develop the various projects on C/C++ languages which provides a
fast speed and the convenience of use.
Qbs is a modern, powerful, and scalable tool for building arbitrary
projects. It is fast, reliable and convenient to use, and comes
with excellent C/C++ support out of the box.

## Features

- Syntax Highlighting
- Projects Building
- Products Running and Debugging
- Building, running and debugging projects

## Requirements

At least the minimum 1.16.0 QBS version must be preinstalled in the system.
Qbs >= 1.16 must be preinstalled in the system.

## Important doc links

- [Prepare the QBS](docs/how-to.md#prepare-qbs)
- [Prepare Qbs](docs/how-to.md#prepare-qbs)
- [Open a project](docs/how-to.md#open-a-project)
- [Configure a project](docs/how-to.md#open-a-project)
- [Build a project](docs/how-to.md#build-a-project)
Expand All @@ -34,5 +33,5 @@ At least the minimum 1.16.0 QBS version must be preinstalled in the system.
**PLEASE**, if you experience any problems, have any questions, or have an idea
for a new feature, create an issue on [the GitHub page](https://github.com/denis-shienkov/vscode-qbs/issues)!

This extension itself *does not* provide language support for the QBS
This extension itself *does not* provide language support for the Qbs
scripting language yet.
26 changes: 26 additions & 0 deletions vscode-qbs.qbs
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
import qbs

Product {
files: [
"CHANGELOG.md",
"README.md",
"package.json",
"package.nls.json",
"tsconfig.json",
]
Group {
name: "docs"
prefix: "docs/"
files: "**/*"
}
Group {
name: "res"
prefix: "res/"
files: "**/*"
}
Group {
name: "src"
prefix: "src/"
files: "**/*"
}
}

0 comments on commit c9fe518

Please sign in to comment.