#build #script #key-value #build-rs

构建 build_script

build.rs 指令的包装器

6 个版本

0.2.0 2022 年 1 月 13 日
0.1.4 2021 年 4 月 28 日
0.1.3 2021 年 2 月 8 日

214构建工具

Download history 214/week @ 2024-03-11 194/week @ 2024-03-18 97/week @ 2024-03-25 124/week @ 2024-04-01 158/week @ 2024-04-08 146/week @ 2024-04-15 211/week @ 2024-04-22 317/week @ 2024-04-29 432/week @ 2024-05-06 172/week @ 2024-05-13 102/week @ 2024-05-20 19/week @ 2024-05-27 577/week @ 2024-06-03 367/week @ 2024-06-10 172/week @ 2024-06-17 145/week @ 2024-06-24

每月 1,263 次下载
duckdb-extension-framewor… 中使用

MIT 许可证

46KB
930

构建脚本

build.rs 指令的包装器

为什么?

我创建这个库是因为我觉得传递指令给 build.rs 的方式很容易出错(尤其是使用字符串时),并且感觉 Rust 没有提供 API 或官方外部包(比如 rand)。

安装

将以下内容添加到您的 Cargo.toml

[build-dependencies]
build_script = "0.2.0"

示例

use build_script::{cargo_rustc_link_lib, cargo_rustc_link_search, BuildScript, Instruction, Value};

fn main() {
    // basic instructions    
    build_script::cargo_rerun_if_changed("something.txt");
    build_script::cargo_rerun_if_env_changed("PKG_CONFIG");
    build_script::cargo_rustc_link_lib("somelibrary");
    build_script::cargo_rustc_link_lib_mapping(cargo_rustc_link_lib::Kind::DynamicLibrary, "somelibrary");
    build_script::cargo_rustc_link_search("something-else.txt");
    build_script::cargo_rustc_link_search_mapping(cargo_rustc_link_search::Kind::Crate, "something-else.txt");
    build_script::cargo_rustc_flags("-l ffi");
    build_script::cargo_rustc_cfg("key");
    build_script::cargo_rustc_cfg_mapping("key", "value");
    build_script::cargo_rustc_env("var", "value");
    build_script::cargo_rustc_cdylib_link_arg("flag");
    build_script::cargo_mapping("key", "value");

    // other, advanced instructions    
    let mut build_script = BuildScript::default();
    let instruction = {
        let value = Value::Singular("something".into());
        Instruction::new("instruction", value)
    };

    // add a custom instruction to the instruction stack    
    build_script.custom_instruction(instruction);

    // write all instructions to something (for this scenario, and also usually, its stdout)    
    build_script.build();
}

有关更多信息,请参阅文档。

术语

指令

指令是传递给 cargo 的内容。例如:cargo:rerun-if-env-changed=ENV。以下将对此进行解析。

指令分为三个部分

前缀

前缀是分隔符 : 之前的字符串:cargo

通常前缀是 cargo,但在这个包中,为了未来的兼容性,可以使用其他自定义前缀,以防添加其他前缀。

名称

名称是分隔符 := 之间的字符串:rerun-if-env-changed

如果名称未知,指令将自动映射(见下文)。

值是分隔符 = 之后的字符串:ENV

这代表了指令的值。

映射

有一种类型的指令是映射:cargo:KEY=VALUE

这实际上是

links 脚本使用的元数据。

源代码可以在这里找到:这里

当指令名称未知时使用。

依赖项

~48KB