pub struct Config { /* private fields */ }
Implementations§
Source§impl Config
impl Config
Sourcepub fn new() -> Config
pub fn new() -> Config
Creates a new set of configuration options which are all initially set to “blank”.
Sourcepub fn statik(&mut self, statik: bool) -> &mut Config
pub fn statik(&mut self, statik: bool) -> &mut Config
Indicate whether the --static
flag should be passed.
This will override the inference from environment variables described in the crate documentation.
Sourcepub fn atleast_version(&mut self, vers: &str) -> &mut Config
pub fn atleast_version(&mut self, vers: &str) -> &mut Config
Indicate that the library must be at least version vers
.
Sourcepub fn exactly_version(&mut self, vers: &str) -> &mut Config
pub fn exactly_version(&mut self, vers: &str) -> &mut Config
Indicate that the library must be equal to version vers
.
Sourcepub fn range_version<'a, R>(&mut self, range: R) -> &mut Configwhere
R: RangeBounds<&'a str>,
pub fn range_version<'a, R>(&mut self, range: R) -> &mut Configwhere
R: RangeBounds<&'a str>,
Indicate that the library’s version must be in range
.
Sourcepub fn arg<S: AsRef<OsStr>>(&mut self, arg: S) -> &mut Config
pub fn arg<S: AsRef<OsStr>>(&mut self, arg: S) -> &mut Config
Add an argument to pass to pkg-config.
It’s placed after all of the arguments generated by this library.
Sourcepub fn cargo_metadata(&mut self, cargo_metadata: bool) -> &mut Config
pub fn cargo_metadata(&mut self, cargo_metadata: bool) -> &mut Config
Define whether metadata should be emitted for cargo allowing it to
automatically link the binary. Defaults to true
.
Sourcepub fn env_metadata(&mut self, env_metadata: bool) -> &mut Config
pub fn env_metadata(&mut self, env_metadata: bool) -> &mut Config
Define whether metadata should be emitted for cargo allowing to
automatically rebuild when environment variables change. Defaults to
true
.
Sourcepub fn print_system_libs(&mut self, print: bool) -> &mut Config
pub fn print_system_libs(&mut self, print: bool) -> &mut Config
Enable or disable the PKG_CONFIG_ALLOW_SYSTEM_LIBS
environment
variable.
This env var is enabled by default.
Sourcepub fn print_system_cflags(&mut self, print: bool) -> &mut Config
pub fn print_system_cflags(&mut self, print: bool) -> &mut Config
Enable or disable the PKG_CONFIG_ALLOW_SYSTEM_CFLAGS
environment
variable.
This env var is enabled by default.
Sourcepub fn probe(&self, name: &str) -> Result<Library, Error>
pub fn probe(&self, name: &str) -> Result<Library, Error>
Run pkg-config
to find the library name
.
This will use all configuration previously set to specify how
pkg-config
is run.
Sourcepub fn target_supported(&self) -> bool
pub fn target_supported(&self) -> bool
True if pkg-config is used for the host system, or configured for cross-compilation