editor: move to github.com/hexops/mach-editor

Fixes hexops/mach#1018

Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
Stephen Gutekanst 2023-09-21 11:00:21 -07:00
parent 8a57ea059c
commit 164e52cd85
13 changed files with 0 additions and 1189 deletions

View file

@ -50,25 +50,6 @@ pub fn build(b: *std.Build) !void {
if (target.getCpuArch() != .wasm32) {
const tests_step = b.step("test", "Run tests");
tests_step.dependOn(&testStep(b, optimize, target).step);
const editor = try App.init(
b,
.{
.name = "mach",
.src = "src/editor/app.zig",
.custom_entrypoint = "src/editor/main.zig",
.target = target,
.optimize = optimize,
.mach_builder = b,
},
);
try editor.link();
const editor_install_step = b.step("editor", "Install editor");
editor_install_step.dependOn(&editor.install.step);
const editor_run_step = b.step("run", "Run the editor");
editor_run_step.dependOn(&editor.run.step);
}
}