chore: add vendor dependencies for kauma build
This commit is contained in:
parent
7c94e5d8fb
commit
067ef6141c
1758 changed files with 398473 additions and 0 deletions
23
vendor/vcpkg/README.md
vendored
Normal file
23
vendor/vcpkg/README.md
vendored
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
# vcpkg-rs [](https://github.com/mcgoo/vcpkg-rs/actions?query=workflow%3AWindows) [](https://github.com/mcgoo/vcpkg-rs/actions?query=workflow%3AmacOS) [](https://github.com/mcgoo/vcpkg-rs/actions?query=workflow%3ALinux)
|
||||
|
||||
[Documentation](https://docs.rs/vcpkg) [Changelog](CHANGELOG.md)
|
||||
|
||||
This is a helper for finding libraries in a [Vcpkg](https://github.com/Microsoft/vcpkg) installation from cargo build scripts. It works similarly to [pkg-config](https://github.com/alexcrichton/pkg-config-rs). It works on Windows (MSVC ABI), Linux and MacOS.
|
||||
|
||||
## Example
|
||||
|
||||
Find the library named `foo` in a [Vcpkg](https://github.com/Microsoft/vcpkg) installation and emit cargo metadata to link it:
|
||||
|
||||
```rust
|
||||
// build.rs
|
||||
fn main() {
|
||||
vcpkg::find_package("foo").unwrap();
|
||||
}
|
||||
```
|
||||
|
||||
See the crate [documentation](https://docs.rs/vcpkg) for more information. See [cargo-vcpkg](https://crates.io/crates/cargo-vcpkg) for a convenient way of creating a vcpkg installation.
|
||||
|
||||
## License
|
||||
|
||||
See LICENSE-APACHE, and LICENSE-MIT for details.
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue