Struct pkg_config::Config [−][src]
pub struct Config { /* fields omitted */ }Methods
impl Config[src]
impl Configpub fn new() -> Config[src]
pub fn new() -> ConfigCreates a new set of configuration options which are all initially set to "blank".
pub fn statik(&mut self, statik: bool) -> &mut Config[src]
pub fn statik(&mut self, statik: bool) -> &mut ConfigIndicate whether the --static flag should be passed.
This will override the inference from environment variables described in the crate documentation.
pub fn atleast_version(&mut self, vers: &str) -> &mut Config[src]
pub fn atleast_version(&mut self, vers: &str) -> &mut ConfigIndicate that the library must be at least version vers.
pub fn arg<S: AsRef<OsStr>>(&mut self, arg: S) -> &mut Config[src]
pub fn arg<S: AsRef<OsStr>>(&mut self, arg: S) -> &mut ConfigAdd an argument to pass to pkg-config.
It's placed after all of the arguments generated by this library.
pub fn cargo_metadata(&mut self, cargo_metadata: bool) -> &mut Config[src]
pub fn cargo_metadata(&mut self, cargo_metadata: bool) -> &mut ConfigDefine whether metadata should be emitted for cargo allowing it to
automatically link the binary. Defaults to true.
pub fn env_metadata(&mut self, env_metadata: bool) -> &mut Config[src]
pub fn env_metadata(&mut self, env_metadata: bool) -> &mut ConfigDefine whether metadata should be emitted for cargo allowing to
automatically rebuild when environment variables change. Defaults to
false.
pub fn print_system_libs(&mut self, print: bool) -> &mut Config[src]
pub fn print_system_libs(&mut self, print: bool) -> &mut ConfigEnable or disable the PKG_CONFIG_ALLOW_SYSTEM_LIBS environment
variable.
This env var is enabled by default.
pub fn probe(&self, name: &str) -> Result<Library, Error>[src]
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.
Trait Implementations
impl Clone for Config[src]
impl Clone for Configfn clone(&self) -> Config[src]
fn clone(&self) -> ConfigReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)Performs copy-assignment from source. Read more
impl Default for Config[src]
impl Default for Config