Add installer
This commit is contained in:
parent
1891d1763c
commit
21abd8f8f1
4 changed files with 48 additions and 3 deletions
|
@ -2,11 +2,14 @@ const std = @import("std");
|
|||
const zine = @import("zine");
|
||||
|
||||
pub fn build(b: *std.Build) !void {
|
||||
zine.website(b, .{
|
||||
.title = "Flow Editor",
|
||||
.host_url = "https://flow-editor.github.io",
|
||||
_ = zine.website(b, .{
|
||||
.title = "flow editor",
|
||||
.host_url = "https://flow-editor.dev",
|
||||
.content_dir_path = "content",
|
||||
.layouts_dir_path = "layouts",
|
||||
.assets_dir_path = "assets",
|
||||
});
|
||||
|
||||
const install_step = b.addInstallFile(b.path("install"), "install");
|
||||
b.getInstallStep().dependOn(&install_step.step);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue