12345678910111213141516171819202122232425262728293031 |
- const std = @import("std");
- pub fn build(b: *std.Build) void {
- const target = b.standardTargetOptions(.{});
- const optimize = b.standardOptimizeOption(.{});
- const exe = b.addExecutable(.{
- .name = "drawing_app",
- .root_source_file = b.path("src/main.zig"),
- .target = target,
- .optimize = optimize,
- });
- // 链接 SDL2 和 SDL2_ttf
- exe.linkSystemLibrary("SDL2");
- exe.linkSystemLibrary("SDL2_ttf");
- exe.linkLibC();
- // 安装可执行文件
- b.installArtifact(exe);
- // 运行命令
- const run_cmd = b.addRunArtifact(exe);
- run_cmd.step.dependOn(b.getInstallStep());
- if (b.args) |args| {
- run_cmd.addArgs(args);
- }
- const run_step = b.step("run", "Run the app");
- run_step.dependOn(&run_cmd.step);
- }
|