gpt4 book ai didi

git - 是否可以使用 Cargo 编译不包含 Cargo.toml 的外部 git 存储库?

转载 作者:行者123 更新时间:2023-11-29 08:34:53 34 4
gpt4 key购买 nike

我正在尝试克隆 SFML github repo在我的本地项目目录中并使用 build.rs Cargo 解决方案构建它,我收到此错误:

Could not find Cargo.toml

我没有找到任何方法从我自己的 Cargo.toml 配置中获取不包含 Cargo.toml 配置文件的 repo!

最佳答案

由于 SFML 不是 Rust 项目,您当然不能直接使用 cargo 构建它。但是在 build.rs 中,您可以轻松地 run执行构建的相应 CMake 命令。之后,您可能想向链接器搜索路径添加一些内容——按照以下几行:

// build.rs
println!("cargo:rustc-link-search=native=/search/path/to/add");
println!("cargo:rustc-link-lib=static=sfml");

关于git - 是否可以使用 Cargo 编译不包含 Cargo.toml 的外部 git 存储库?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36267607/

34 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com