Lines Matching refs:CFG
75 name by modifying **[`CFG.include_prefix`][CFG]** from build.rs:
77 [CFG]: https://docs.rs/cxx-build/*/cxx_build/static.CFG.html
82 use cxx_build::CFG;
85 CFG.include_prefix = "my/project";
151 The following CFG settings are only relevant to you if you are writing a library
156 **[`CFG.exported_header_dirs`][CFG]** (vector of absolute paths) defines a set
184 use cxx_build::CFG;
190 CFG.exported_header_dirs.extend(python_include_paths);
207 use cxx_build::CFG;
214 CFG.exported_header_dirs.push(&headers);
228 **[`CFG.exported_header_prefixes`][CFG]** (vector of strings) each refer to the
235 `CFG.exported_header_prefixes` (*or* their `links` key into
236 `CFG.exported_header_links`; see below). On the other hand if only your C++
268 use cxx_build::CFG;
271 CFG.exported_header_prefixes = vec!["crate0", "group/api"];
281 For more fine grained control, there is **[`CFG.exported_header_links`][CFG]**
285 This achieves an equivalent result to `CFG.exported_header_prefixes` by
299 use cxx_build::CFG;
302 CFG.exported_header_links.push("git2");