fix: make build-rust false by default
This commit is contained in:
parent
133b2be3fc
commit
599dd9e224
1 changed files with 1 additions and 1 deletions
|
|
@ -5,7 +5,7 @@ pub fn build(b: *std.Build) !void {
|
||||||
const optimize = b.standardOptimizeOption(.{});
|
const optimize = b.standardOptimizeOption(.{});
|
||||||
|
|
||||||
// --- Rust C ABI & Pre-built via temporal-rs subpackage --- //
|
// --- Rust C ABI & Pre-built via temporal-rs subpackage --- //
|
||||||
const build_rust = b.option(bool, "build-rust", "Build Rust library from source");
|
const build_rust = b.option(bool, "build-rust", "Build Rust library from source") orelse false;
|
||||||
const libtemporal = b.dependency("libtemporal", .{
|
const libtemporal = b.dependency("libtemporal", .{
|
||||||
.target = target,
|
.target = target,
|
||||||
.optimize = optimize,
|
.optimize = optimize,
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue