mirror of
https://github.com/jedisct1/minisign.git
synced 2025-04-05 11:57:40 +03:00
without_libsodium -> without-libsodium
This commit is contained in:
parent
c1c452560f
commit
c084f9ca38
2 changed files with 2 additions and 2 deletions
|
@ -33,7 +33,7 @@ Compilation with libsodium, statically linked (libsodium will only be needed for
|
||||||
|
|
||||||
Compilation without libsodium, no dependencies required:
|
Compilation without libsodium, no dependencies required:
|
||||||
|
|
||||||
$ zig build -Drelease -Dwithout_libsodium
|
$ zig build -Drelease -Dwithout-libsodium
|
||||||
|
|
||||||
The resulting binary can be found in `zig-out/bin/minisign`.
|
The resulting binary can be found in `zig-out/bin/minisign`.
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@ pub fn build(b: *std.Build) !void {
|
||||||
const target = b.standardTargetOptions(.{});
|
const target = b.standardTargetOptions(.{});
|
||||||
const optimize = b.standardOptimizeOption(.{ .preferred_optimize_mode = .ReleaseSmall });
|
const optimize = b.standardOptimizeOption(.{ .preferred_optimize_mode = .ReleaseSmall });
|
||||||
|
|
||||||
const use_libzodium = b.option(bool, "without_libsodium", "Use the zig standard library instead of libsodium") orelse false;
|
const use_libzodium = b.option(bool, "without-libsodium", "Use the zig standard library instead of libsodium") orelse false;
|
||||||
const use_static_linking = b.option(bool, "static", "Statically link the binary") orelse false;
|
const use_static_linking = b.option(bool, "static", "Statically link the binary") orelse false;
|
||||||
|
|
||||||
const minisign = b.addExecutable(.{
|
const minisign = b.addExecutable(.{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue