Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Microsoft/vcpkg
C++ Library Manager for Windows, Linux, and MacOS
https://github.com/Microsoft/vcpkg
c cmake cplusplus cpp libraries package-manager packages vcpkg visual-studio windows
Last synced: 15 days ago
JSON representation
C++ Library Manager for Windows, Linux, and MacOS
- Host: GitHub
- URL: https://github.com/Microsoft/vcpkg
- Owner: microsoft
- License: mit
- Created: 2016-09-15T16:40:50.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2024-05-22T22:29:48.000Z (6 months ago)
- Last Synced: 2024-05-22T22:47:02.573Z (6 months ago)
- Topics: c, cmake, cplusplus, cpp, libraries, package-manager, packages, vcpkg, visual-studio, windows
- Language: CMake
- Homepage:
- Size: 68.4 MB
- Stars: 21,826
- Watchers: 428
- Forks: 6,058
- Open Issues: 1,300
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.txt
- Security: SECURITY.md
Awesome Lists containing this project
- awesome-code-for-gamedev - vcpkg
- awesome-cmake - vcpkg - A tool to acquire and build C++ open source libraries. Uses CMake internally as a build script language. [```[MIT]```][MIT] (Package Management / Build Systems)
README
[š Read in a different language](https://learn.microsoft.com/locale/?target=https%3A%2F%2Flearn.microsoft.com%2Fvcpkg%2F)
# vcpkg overview
vcpkg is a free and open-source C/C++ package manager maintained by Microsoft
and the C++ community.Initially launched in 2016 as a tool for assisting developers in migrating their
projects to newer versions of Visual Studio, vcpkg has evolved into a
cross-platform tool used by developers on Windows, macOS, and Linux. vcpkg has a
large collection of open-source libraries and enterprise-ready features designed to
facilitate your development process with support for any build and project
systems. vcpkg is a C++ tool at heart and is written in C++ with scripts in
CMake. It is designed from the ground up to address the unique pain points C/C++
developers experience.This tool and ecosystem are constantly evolving, and we always appreciate
contributions! Learn how to start contributing with our [packaging
tutorial](https://learn.microsoft.com/vcpkg/get_started/get-started-adding-to-registry) and [maintainer
guide](https://learn.microsoft.com/vcpkg/contributing/maintainer-guide).# Get started
First, follow one of our quick start guides.
Whether you're using CMake, MSBuild, or any other build system, vcpkg has you covered:
* [vcpkg with CMake](https://learn.microsoft.com/vcpkg/get_started/get-started)
* [vcpkg with MSBuild](https://learn.microsoft.com/vcpkg/get_started/get-started-msbuild)
* [vcpkg with other build systems](https://learn.microsoft.com/vcpkg/users/buildsystems/manual-integration)You can also use any editor:
* [vcpkg with Visual Studio](https://learn.microsoft.com/vcpkg/get_started/get-started-vs)
* [vcpkg with Visual Studio Code](https://learn.microsoft.com/vcpkg/get_started/get-started-vscode)
* [vcpkg with
CLion]()
* [vcpkg with Qt Creator]()If a library you need is not present in the vcpkg registry, [open an issue on
the GitHub repository][contributing:submit-issue] or [contribute the package
yourself](https://learn.microsoft.com/vcpkg/get_started/get-started-adding-to-registry).After you've gotten vcpkg installed and working, you may wish to [add
tab completion to your terminal](https://learn.microsoft.com/vcpkg/commands/integrate#vcpkg-autocompletion).# Use vcpkg
Create a [manifest for your project's dependencies](https://learn.microsoft.com/vcpkg/consume/manifest-mode):
```Console
vcpkg new --application
vcpkg add port fmt
```Or [install packages through the command line](https://learn.microsoft.com/vcpkg/consume/classic-mode):
```Console
vcpkg install fmt
```Then use one of our available integrations for
[CMake](https://learn.microsoft.com/vcpkg/concepts/build-system-integration#cmake-integration),
[MSBuild](https://learn.microsoft.com/vcpkg/concepts/build-system-integration#msbuild-integration) or
[other build
systems](https://learn.microsoft.com/vcpkg/concepts/build-system-integration#manual-integration).For a short description of all available commands, run `vcpkg help`.
Run `vcpkg help [topic]` for details on a specific topic.# Key features
vcpkg offers powerful features for your package management needs:
* [easily integrate with your build system](https://learn.microsoft.com/vcpkg/concepts/build-system-integration)
* [control the versions of your dependencies](https://learn.microsoft.com/vcpkg/users/versioning)
* [package and publish your own packages](https://learn.microsoft.com/vcpkg/concepts/registries)
* [reuse your binary artifacts](https://learn.microsoft.com/vcpkg/users/binarycaching)
* [enable offline scenarios with asset caching](https://learn.microsoft.com/vcpkg/concepts/asset-caching)# Contribute
vcpkg is an open source project, and is thus built with your contributions. Here
are some ways you can contribute:* [Submit issues][contributing:submit-issue] in vcpkg or existing packages
* [Submit fixes and new packages][contributing:submit-pr]Please refer to our [mantainer guide](https://learn.microsoft.com/vcpkg/contributing/maintainer-guide) and
[packaging tutorial](https://learn.microsoft.com/vcpkg/get_started/get-started-packaging) for more details.This project has adopted the [Microsoft Open Source Code of
Conduct][contributing:coc]. For more information see the [Code of Conduct
FAQ][contributing:coc-faq] or email
[[email protected]](mailto:[email protected]) with any additional
questions or comments.
[contributing:submit-issue]: https://github.com/microsoft/vcpkg/issues/new/choose
[contributing:submit-pr]: https://github.com/microsoft/vcpkg/pulls
[contributing:coc]: https://opensource.microsoft.com/codeofconduct/
[contributing:coc-faq]: https://opensource.microsoft.com/codeofconduct/
# Resources* Ports: [Microsoft/vcpkg]()
* Source code: [Microsoft/vcpkg-tool]()
* Docs: [Microsoft Learn | vcpkg](https://learn.microsoft.com/vcpkg)
* Website: [vcpkg.io]()
* Email: [[email protected]]()
* Discord: [\#include \'s Discord server](), in the #švcpkg channel
* Slack: [C++ Alliance's Slack server](), in the #vcpkg channel# License
The code in this repository is licensed under the MIT License. The libraries
provided by ports are licensed under the terms of their original authors. Where
available, vcpkg places the associated license(s) in the location
[`installed//share//copyright`](https://learn.microsoft.com/vcpkg/contributing/maintainer-guide#install-copyright-file).# Security
Most ports in vcpkg build the libraries in question using the original build
system preferred by the original developers of those libraries, and download
source code and build tools from their official distribution locations. For use
behind a firewall, the specific access needed will depend on which ports are
being installed. If you must install it in an "air gapped" environment, consider
instaling once in a non-"air gapped" environment, populating an [asset
cache](https://learn.microsoft.com/vcpkg/users/assetcaching) shared with the otherwise "air gapped"
environment.# Telemetry
vcpkg collects usage data in order to help us improve your experience. The data
collected by Microsoft is anonymous. You can opt-out of telemetry by:- running the bootstrap-vcpkg script with `-disableMetrics`
- passing `--disable-metrics` to vcpkg on the command line
- setting the `VCPKG_DISABLE_METRICS` environment variableRead more about vcpkg telemetry at [https://learn.microsoft.com/vcpkg/about/privacy](https://learn.microsoft.com/vcpkg/about/privacy).