Make furhter minor cleanup

This commit is contained in:
Turiiya 2024-05-26 05:23:59 +02:00 committed by jinzhongjia
parent fb6618ca79
commit 9a1e116701

View File

@ -116,6 +116,7 @@ fn build_examples_11(b: *Build, optimize: OptimizeMode, target: CrossTarget, web
if (entry.kind != .directory) {
continue;
}
const example_name = entry.name;
const path = std.fmt.allocPrint(b.allocator, "examples/C/{s}/main.c", .{example_name}) catch |err| {
log.err("fmt path for examples failed, err is {}", .{err});
@ -127,23 +128,15 @@ fn build_examples_11(b: *Build, optimize: OptimizeMode, target: CrossTarget, web
.target = target,
.optimize = optimize,
});
exe.linkLibrary(webui_lib);
exe.addCSourceFile(.{
.file = .{
.path = path,
},
.file = .{ .path = path },
.flags = &.{},
});
exe.subsystem = .Windows;
exe.linkLibrary(webui_lib);
const exe_install = b.addInstallArtifact(exe, .{});
build_all_step.dependOn(&exe_install.step);
const exe_run = b.addRunArtifact(exe);
build_all_step.dependOn(&exe_install.step);
exe_run.step.dependOn(&exe_install.step);
const cwd = std.fmt.allocPrint(b.allocator, "{s}/{s}", .{ examples_path, example_name }) catch |err| {
@ -156,12 +149,10 @@ fn build_examples_11(b: *Build, optimize: OptimizeMode, target: CrossTarget, web
log.err("fmt step_name for examples failed, err is {}", .{err});
std.os.exit(1);
};
const step_desc = std.fmt.allocPrint(b.allocator, "run example {s}", .{example_name}) catch |err| {
log.err("fmt step_desc for examples failed, err is {}", .{err});
std.os.exit(1);
};
const exe_run_step = b.step(step_name, step_desc);
exe_run_step.dependOn(&exe_run.step);
} else |err| {