Welcome to the Chocolatey Community Package Repository! The packages found in this section of the site are provided, maintained, and moderated by the community.
Moderation
Every version of each package undergoes a rigorous moderation process before it goes live that typically includes:
- Security, consistency, and quality checking
- Installation testing
- Virus checking through VirusTotal
- Human moderators who give final review and sign off
More detail at Security and Moderation.
Organizational Use
If you are an organization using Chocolatey, we want your experience to be fully reliable. Due to the nature of this publicly offered repository, reliability cannot be guaranteed. Packages offered here are subject to distribution rights, which means they may need to reach out further to the internet to the official locations to download files at runtime.
Fortunately, distribution rights do not apply for internal use. With any edition of Chocolatey (including the free open source edition), you can host your own packages and cache or internalize existing community packages.
Disclaimer
Your use of the packages on this site means you understand they are not supported or guaranteed in any way. Learn more...
- Passing
- Failing
- Pending
- Unknown / Exempted

Downloads:
19,274
Downloads of v 1.8.0:
685
Last Update:
30 May 2017
Package Maintainer(s):
Software Author(s):
- Qt Project
Tags:
qbs qt build
Qbs
This is not the latest version of Qbs available.
Downloads:
19,274
Downloads of v 1.8.0:
685
Maintainer(s):
Software Author(s):
- Qt Project
Edit Package
To edit the metadata for a package, please upload an updated version of the package.
Chocolatey's Community Package Repository currently does not allow updating package metadata on the website. This helps ensure that the package itself (and the source used to build the package) remains the one true source of package metadata.
This does require that you increment the package version.
Qbs 1.8.0
This is not the latest version of Qbs available.
All Checks are Passing
2 Passing Test
To install Qbs, run the following command from the command line or from PowerShell:
To upgrade Qbs, run the following command from the command line or from PowerShell:
To uninstall Qbs, run the following command from the command line or from PowerShell:
NOTE: This applies to both open source and commercial editions of Chocolatey.
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
- Download the Package Download
- Follow manual internalization instructions
-
Package Internalizer (C4B)
- Run
choco download qbs --internalize --version=1.8.0 --source=https://community.chocolatey.org/api/v2
(additional options) - Run
choco push --source="'http://internal/odata/repo'"
for package and dependencies - Automate package internalization
- Run
3. Enter your internal repository url
(this should look similar to https://community.chocolatey.org/api/v2)
4. Choose your deployment method:
choco upgrade qbs -y --source="'STEP 3 URL'" [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade qbs -y --source="'STEP 3 URL'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Ensure qbs installed
win_chocolatey:
name: qbs
state: present
version: 1.8.0
source: STEP 3 URL
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'qbs' do
action :install
version '1.8.0'
source 'STEP 3 URL'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
Chocolatey::Ensure-Package
(
Name: qbs,
Version: 1.8.0,
Source: STEP 3 URL
);
Requires Otter Chocolatey Extension. See docs at https://inedo.com/den/otter/chocolatey.
cChocoPackageInstaller qbs
{
Name = 'qbs'
Ensure = 'Present'
Version = '1.8.0'
Source = 'STEP 3 URL'
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'qbs':
provider => 'chocolatey',
ensure => '1.8.0',
source => 'STEP 3 URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
salt '*' chocolatey.install qbs version="1.8.0" source="STEP 3 URL"
See docs at https://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.chocolatey.html.
5. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...
This package was approved as a trusted package on 30 May 2017.
Qbs is a tool that helps simplify the build process for developing projects across multiple platforms.
$ErrorActionPreference = 'Stop'
Install-ChocolateyZipPackage `
-PackageName 'qbs' `
-Url 'https://download.qt.io/official_releases/qbs/1.8.0/qbs-windows-x86-1.8.0.zip' `
-UnzipLocation "$(Split-Path -parent $MyInvocation.MyCommand.Definition)" `
-Url64bit 'https://download.qt.io/official_releases/qbs/1.8.0/qbs-windows-x86_64-1.8.0.zip' `
-Checksum 'a968f3128fe25cb38859b7cee7023102554ce2745b9626b563d30a9fc97abfe412fb4e38ae0eefcee3a19a9a11afe990ce6e8a4bec06a988353d29477d740bb9' `
-ChecksumType 'sha512' `
-Checksum64 'a35168ea5264c332044b5e8ee59090a3bb4c45247b17254d07b18de5ae51ef4984cf574ec1d0833669f2e6a3fbfe2ca0facb8c20e9d3da780aeb7330974c4633' `
-ChecksumType64 'sha512'
# Workaround until the next release which includes https://codereview.qt-project.org/#/c/195815/
If (Test-Path "$(Split-Path -parent $MyInvocation.MyCommand.Definition)\qbs-windows-x86_64-1.8.0") {
Copy-Item "$(Split-Path -parent $MyInvocation.MyCommand.Definition)\qbs-windows-x86_64-1.8.0\bin\*.dll" `
"$(Split-Path -parent $MyInvocation.MyCommand.Definition)\qbs-windows-x86_64-1.8.0\libexec\qbs"
} Else {
Copy-Item "$(Split-Path -parent $MyInvocation.MyCommand.Definition)\qbs-windows-x86-1.8.0\bin\*.dll" `
"$(Split-Path -parent $MyInvocation.MyCommand.Definition)\qbs-windows-x86-1.8.0\libexec\qbs"
}
Log in or click on link to see number of positives.
- Qt5Core.dll (bc64f8d22e2b) - ## / 62
- Qt5Gui.dll (ffb7e72b2a12) - ## / 68
- Qt5Network.dll (766d6baaa3b2) - ## / 70
- Qt5Widgets.dll (13bdf75b2169) - ## / 67
- Qt5Xml.dll (42d4ee6c6abd) - ## / 61
- qgenericbearer.dll (aa10ffe739bc) - ## / 61
- qnativewifibearer.dll (b136156a1062) - ## / 61
- qgif.dll (f2f6aade12f9) - ## / 61
- qicns.dll (623edf31411d) - ## / 61
- qico.dll (eeda038e329a) - ## / 61
- qjpeg.dll (2df9130cbf1f) - ## / 61
- qtga.dll (870166f4fa5e) - ## / 62
- qtiff.dll (1c7348b97aea) - ## / 61
- qwbmp.dll (77106a729ef5) - ## / 61
- qwebp.dll (7ee626ab9990) - ## / 61
- qwindows.dll (bceb78b57edb) - ## / 67
- Qt5Script.dll (eaf062d89a35) - ## / 62
- Qt5Core.dll (9fc0202bd39e) - ## / 61
- Qt5Gui.dll (58ce1587d523) - ## / 64
- Qt5Script.dll (093897924a25) - ## / 62
- Qt5Widgets.dll (88d22ecc5b8b) - ## / 64
- Qt5Xml.dll (4547cc3802eb) - ## / 60
- qgif.dll (3b47e3ef3b49) - ## / 60
- qicns.dll (35534b262857) - ## / 64
- qico.dll (7761817fa151) - ## / 61
- qjpeg.dll (42f98390b2a6) - ## / 61
- qtga.dll (886f30276161) - ## / 60
- qtiff.dll (db3af355dc4b) - ## / 61
- qwbmp.dll (4a60d7dcabf2) - ## / 60
- qwebp.dll (cf9ed4f86df6) - ## / 61
- qwindows.dll (4d636c1a8b48) - ## / 61
- qbs.1.8.0.nupkg (114fb63e488a) - ## / 59
- qbs-config-ui.exe (4223a528257b) - ## / 62
- qbs-config.exe (88d6b4ac19b3) - ## / 63
- qbs-qmltypes.exe (47df9d265125) - ## / 62
- qbs-setup-android.exe (b5436cb05748) - ## / 62
- qbs-setup-qt.exe (7b6c6000e5f0) - ## / 62
- qbs-setup-toolchains.exe (3a7a397e164c) - ## / 61
- qbs.exe (8c5803413db0) - ## / 61
- qbscore.dll (0e77f6d3647e) - ## / 62
- qbsqtprofilesetup.dll (1b8fe7f60b3b) - ## / 61
- Qt5Network.dll (0a32ad253a8f) - ## / 61
- qgenericbearer.dll (6ba89fb3f904) - ## / 61
- qnativewifibearer.dll (684d199db3fe) - ## / 62
- qbs_cpp_scanner.dll (a5c66840db69) - ## / 62
- qbs_qt_scanner.dll (96ac3d1e751e) - ## / 62
- qbs_processlauncher.exe (16cd4aa7078e) - ## / 62
- qbs-config-ui.exe (0dcdd3ff3cb2) - ## / 62
- qbs-config.exe (2b345c180c1e) - ## / 61
- qbs-qmltypes.exe (e67d805af632) - ## / 62
- qbs-setup-android.exe (2c7807faa527) - ## / 61
- qbs-setup-qt.exe (3be74a5859e1) - ## / 62
- qbs-setup-toolchains.exe (ec5f80dbd9d4) - ## / 61
- qbs.exe (a37fbcf1b6a1) - ## / 61
- qbscore.dll (b8ae73e4c4ae) - ## / 62
- qbsqtprofilesetup.dll (891e99eb727e) - ## / 61
- qbs_cpp_scanner.dll (5a3eb90e2e53) - ## / 61
- qbs_qt_scanner.dll (349fb54f93ef) - ## / 60
- qbs_processlauncher.exe (99a3b3f96209) - ## / 62
- qbs-windows-x86_64-1.8.0.zip (31443a63d36d) - ## / 58
- qbs-windows-x86-1.8.0.zip (0ac219e59415) - ## / 58
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Version | Downloads | Last Updated | Status |
---|---|---|---|
Qbs 1.18.0 | 357 | Wednesday, December 23, 2020 | Approved |
Qbs 1.17.0 | 509 | Wednesday, September 2, 2020 | Approved |
Qbs 1.16.0 | 501 | Tuesday, May 5, 2020 | Approved |
Qbs 1.15.0 | 453 | Wednesday, December 18, 2019 | Approved |
Qbs 1.14.1 | 193 | Monday, November 11, 2019 | Approved |
Qbs 1.14.0 | 177 | Friday, October 11, 2019 | Approved |
Qbs 1.13.1 | 925 | Wednesday, May 29, 2019 | Approved |
Qbs 1.13.0 | 138 | Thursday, May 2, 2019 | Approved |
Qbs 1.12.1 | 847 | Friday, September 21, 2018 | Approved |
Qbs 1.12.0 | 465 | Thursday, July 19, 2018 | Approved |
Qbs 1.11.1 | 558 | Friday, May 4, 2018 | Approved |
Qbs 1.11.0 | 2025 | Wednesday, March 28, 2018 | Approved |
Qbs 1.10.1 | 993 | Thursday, February 15, 2018 | Approved |
Qbs 1.10.0 | 335 | Friday, December 8, 2017 | Approved |
Qbs 1.9.1 | 1274 | Thursday, October 5, 2017 | Approved |
Qbs 1.9.0 | 394 | Wednesday, September 6, 2017 | Approved |
Qbs 1.8.1 | 307 | Wednesday, July 5, 2017 | Approved |
Qbs 1.8.0 | 685 | Tuesday, May 30, 2017 | Approved |
Qbs 1.7.2 | 3235 | Thursday, April 27, 2017 | Approved |
Qbs 1.7.1 | 1149 | Thursday, January 26, 2017 | Approved |
Qbs 1.7.0 | 515 | Thursday, December 15, 2016 | Approved |
Qbs 1.6.1 | 439 | Wednesday, November 9, 2016 | Approved |
Qbs 1.6.0 | 371 | Friday, August 26, 2016 | Approved |
Qbs 1.5.2 | 295 | Thursday, July 7, 2016 | Approved |
Qbs 1.5.1 | 322 | Monday, June 13, 2016 | Approved |
Qt build suite 1.5.0 | 336 | Thursday, May 12, 2016 | Approved |
Qt build suite 1.4.5 | 289 | Thursday, March 17, 2016 | Approved |
Qt build suite 1.4.4 | 292 | Tuesday, December 15, 2015 | Approved |
Qt build suite 1.4.3 | 269 | Tuesday, October 27, 2015 | Approved |
Qt build suite 1.4.2 | 294 | Monday, August 24, 2015 | Approved |
Qt build suite 1.4.1 | 332 | Friday, July 10, 2015 | Approved |
© 2017 The Qt Company Ltd.
qbs 1.8.0
Features:
* General:
* It is no longer strictly required to provide a profile.
* Sub-second timestamp resolutions are now supported on Unix
systems.
* Added a convenient replacement for
product.moduleProperty("module", "property"), namely
product.module.property.
* The loadFile and loadExtension functions are deprecated in
favor of the new require function, which accepts arguments of either
form accepted by the deprecated functions.
* Added new tool qbs-create-project to set up a new qbs
project from an existing source tree.
* FileTagger items can now have conditions.
* Probe items can now appear directly under a Project item.
* Cpp module:
* Added support for QNX and the QCC toolchain
* Added the cpp.useRPathLink property to control whether
to use the -rpath-link linker option.
* Provided the means to easily combine source files for the C
language family in order to support "amalgamation builds".
* Introduced cpp.treatSystemHeadersAsDependencies.
* Qt modules:
* Introduced property Qt.core.combineMocOutput.
* Introduced Qt.core.enableKeywords for simple disabling of
the "signals", "slots" and "emit" symbols.
Important bug fixes:
* Improved scalability of parallel builds on Linux by starting
Process commands via a dedicated launcher process.
Behavior changes:
* The base directory for source files changed from the product
source directory to the parent directory of the file where the files are
listed.
qbs 1.7.2
Important bug fixes:
* macOS: Fixed App Extension builds on older versions of Xcode/macOS
* Windows: Fixed handling of files on network shares
* Fixed syntax error in Qt module that occurred with static Qt builds
* Several fixes for the Visual Studio generator (QBS-1077, QBS-1100)
qbs 1.7.1
Important bug fixes:
* Fixed race condition in qmake build (QBS-1091)
* Qt Creator no longer leaves empty build directories
behind after cancelled project loading (QTCREATORBUG-17543)
* Fixed an exception crossing the API boundary
qbs 1.7.0
Features:
* Added a generator for Visual Studio projects.
* The Group item is now nestable.
* Stricter type checking for properties.
* Added support for generating qrc files.
* Added full support for the QtScxml module.
* Introduced cpp.soVersion.
* Added support for building Inno Setup packages.
* Tentative support for Visual Studio 2017.
* We now assume UTF-8 encoding for project files.
* In Scanner items, input.fileName now contains
a filename rather than the full path.
* Warnings encountered during project resolving are now stored
and re-displayed when the project is loaded.
* Documentation was improved in several places, most
notably for the Rule item.
* Support for the deprecated Transformer item was removed.
Important bug fixes:
* Long paths on Windows are handled (QBS-1068).
* Cyclic module dependencies are detected (QBS-1044).
* The libqbscore soname now includes the minor version,
so that it will not stay the same across ABI changes
(QBS-1002).
qbs 1.6.1
Features:
* Added cpp.linkerWrapper property.
Important bug fixes:
* Fixed a number of bugs evaluating module properties (QBS-845, QBS-1005).
* Fixed x86_64 > x86 cross compiling (QBS-1028).
* Fixed dynamic rules with generated inputs (QBS-1029).
qbs 1.6.0
- Added lex_yacc module.
- Introduced property cpp.systemRunPaths.
- Introduced the ability to check a module's version in a Depends item.
- Introduced cpp.driverFlags, which allows specifying flags to be
passed to the compiler driver (in any mode), but never the system linker. - Introduced cpp.linkerMode property to allow selection of the
correct linker (C driver, C++ driver, or system linker) based on the
objects being linked. - Added automatic escaping of arguments passed to the
cpp.linkerFlags and cpp.platformLinkerFlags properties using the -Wl
or -Xlinker syntaxes. To revert to the old behavior,
Project.minimumQbsVersion can be set to a version lower than 1.6. - Each build configuration now requires a unique name, which
is specified on the command line in the same place that qbs.buildVariant
used to be specified. This allows building for multiple configurations
with the same variant.
This package has no dependencies.
Ground Rules:
- This discussion is only about Qbs and the Qbs package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or Qbs, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.