3 Star 0 Fork 0

mirrors_jedisct1/fetch-them-macos-headers

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
build.zig 997 Bytes
一键复制 编辑 原始数据 按行查看 历史
Jakub Konka 提交于 2020-10-20 20:41 . Clean up creating subdirs
const Builder = @import("std").build.Builder;
pub fn build(b: *Builder) void {
// Standard target options allows the person running `zig build` to choose
// what target to build for. Here we do not override the defaults, which
// means any target is allowed, and the default is native. Other options
// for restricting supported target set are available.
const target = b.standardTargetOptions(.{});
// Standard release options allow the person running `zig build` to select
// between Debug, ReleaseSafe, ReleaseFast, and ReleaseSmall.
const mode = b.standardReleaseOptions();
const exe = b.addExecutable("fetch_them_macos_headers", "src/main.zig");
exe.setTarget(target);
exe.setBuildMode(mode);
exe.install();
const run_cmd = exe.run();
run_cmd.step.dependOn(b.getInstallStep());
if (b.args) |args| {
run_cmd.addArgs(args);
}
const run_step = b.step("run", "Run the app");
run_step.dependOn(&run_cmd.step);
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mirrors_jedisct1/fetch-them-macos-headers.git
git@gitee.com:mirrors_jedisct1/fetch-them-macos-headers.git
mirrors_jedisct1
fetch-them-macos-headers
fetch-them-macos-headers
main

搜索帮助