mirror of
https://github.com/webui-dev/webui
synced 2025-03-28 21:13:17 +00:00
Make furhter minor cleanup
This commit is contained in:
parent
fb6618ca79
commit
9a1e116701
17
build.zig
17
build.zig
@ -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| {
|
||||
|
Loading…
x
Reference in New Issue
Block a user