-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.zig
37 lines (29 loc) · 1.55 KB
/
build.zig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
const std = @import("std");
const androidbuild = @import("src/androidbuild/androidbuild.zig");
const Apk = @import("src/androidbuild/apk.zig");
// Expose Android build functionality for use in your build.zig
pub const Tools = @import("src/androidbuild/tools.zig");
pub const APK = Apk; // TODO(jae): 2025-03-13: Consider deprecating and using 'Apk' to be conventional to Zig
pub const APILevel = androidbuild.APILevel; // TODO(jae): 2025-03-13: Consider deprecating and using 'ApiLevel' to be conventional to Zig
pub const standardTargets = androidbuild.standardTargets;
// Deprecated exposes fields
/// Deprecated: Use Tools.Options instead.
pub const ToolsOptions = Tools.Options;
/// Deprecated: Use Tools.CreateKey instead.
pub const CreateKey = Tools.CreateKey;
/// NOTE: As well as providing the "android" module this declaration is required so this can be imported by other build.zig files
pub fn build(b: *std.Build) void {
const target = b.standardTargetOptions(.{});
const optimize = b.standardOptimizeOption(.{});
const module = b.addModule("android", .{
.root_source_file = b.path("src/android/android.zig"),
.target = target,
.optimize = optimize,
});
// Create stub of builtin options.
// This is discovered and then replaced by "Apk" in the build process
const android_builtin_options = std.Build.addOptions(b);
android_builtin_options.addOption([:0]const u8, "package_name", "");
module.addImport("android_builtin", android_builtin_options.createModule());
module.linkSystemLibrary("log", .{});
}