Skip to content

Commit 14677f1

Browse files
committed
build: workaround lack of -n on gnu xxd
1 parent b5f9c70 commit 14677f1

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

build.zig

+1-4
Original file line numberDiff line numberDiff line change
@@ -142,10 +142,7 @@ pub fn build(b: *std.build.Builder) !void {
142142

143143
const server_assets = [_][]const u8{ "index.html", "index.js", "completion.js", "json-schema-to-grammar.mjs" };
144144
for (server_assets) |asset| {
145-
// Note: code can be simplified once setCwd is standard.
146-
const gen_hpp = b.addSystemCommand(
147-
&.{ "xxd", "-n", asset, "-i", b.fmt("examples/server/public/{s}", .{asset}), b.fmt("examples/server/{s}.hpp", .{asset}) },
148-
);
145+
const gen_hpp = b.addSystemCommand(&.{ "bash", "-c", b.fmt("cd examples/server/public && xxd -i {s} ../{s}.hpp", .{ asset, asset }) });
149146
server.step.dependOn(&gen_hpp.step);
150147
}
151148
}

examples/server/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
set(SERVER_ASSETS
1+
set(SERVER_ASSETS
22
index.html
33
index.js
44
completion.js

0 commit comments

Comments
 (0)