diff options
| author | Lucas Faria Mendes <lucas.oliveira1676@etec.sp.gov.br> | 2025-12-05 14:56:15 +0000 |
|---|---|---|
| committer | Lucas Faria Mendes <lucas.oliveira1676@etec.sp.gov.br> | 2025-12-05 14:56:15 +0000 |
| commit | 11b7033a351226696290983811928d22ccc85256 (patch) | |
| tree | 46dd2230986ff4c28da8ee047a97004bfaa5cfa3 /build.zig | |
| parent | bb8bb6a15e83dc2b0a33133c8d738de2594d4f58 (diff) | |
| download | sqlite-zig-11b7033a351226696290983811928d22ccc85256.tar.gz sqlite-zig-11b7033a351226696290983811928d22ccc85256.zip | |
codecrafters submit [skip ci]
Diffstat (limited to 'build.zig')
| -rw-r--r-- | build.zig | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -2,11 +2,14 @@ const std = @import("std"); // Learn more about this file here: https://ziglang.org/learn/build-system pub fn build(b: *std.Build) void { + const optimize = b.standardOptimizeOption(.{ .preferred_optimize_mode = .ReleaseFast }); + const exe = b.addExecutable(.{ .name = "main", .root_module = b.createModule(.{ .root_source_file = b.path("src/main.zig"), .target = b.graph.host, + .optimize = optimize, }), }); |