summaryrefslogtreecommitdiff
path: root/third_party/pkg-config-rs/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/pkg-config-rs/README.md')
-rw-r--r--third_party/pkg-config-rs/README.md25
1 files changed, 25 insertions, 0 deletions
diff --git a/third_party/pkg-config-rs/README.md b/third_party/pkg-config-rs/README.md
new file mode 100644
index 0000000..4db41e2
--- /dev/null
+++ b/third_party/pkg-config-rs/README.md
@@ -0,0 +1,25 @@
1# pkg-config-rs
2
3[![Build Status](https://travis-ci.org/alexcrichton/pkg-config-rs.svg?branch=master)](https://travis-ci.org/alexcrichton/pkg-config-rs)
4
5[Documentation](http://alexcrichton.com/pkg-config-rs)
6
7A simple library meant to be used as a build dependency with Cargo packages in
8order to use the system `pkg-config` tool (if available) to determine where a
9library is located.
10
11```rust
12extern crate pkg_config;
13
14fn main() {
15 pkg_config::find_library("foo").unwrap();
16}
17```
18
19# License
20
21`pkg-config-rs` is primarily distributed under the terms of both the MIT
22license and the Apache License (Version 2.0), with portions covered by various
23BSD-like licenses.
24
25See LICENSE-APACHE, and LICENSE-MIT for details.