2 Star 0 Fork 0

mirrors_jedisct1/zig-scrypt

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
build.zig 417 Bytes
一键复制 编辑 原始数据 按行查看 历史
lucky 提交于 2021-03-27 10:30 . rewrote phc parser without allocator
const std = @import("std");
pub fn build(b: *std.build.Builder) void {
const mode = b.standardReleaseOptions();
const lib = b.addStaticLibrary("scrypt", "src/scrypt.zig");
lib.setBuildMode(mode);
lib.install();
var main_tests = b.addTest("src/tests.zig");
main_tests.setBuildMode(mode);
const test_step = b.step("test", "Run library tests");
test_step.dependOn(&main_tests.step);
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mirrors_jedisct1/zig-scrypt.git
git@gitee.com:mirrors_jedisct1/zig-scrypt.git
mirrors_jedisct1
zig-scrypt
zig-scrypt
master

搜索帮助