diff --git a/build.zig b/build.zig index b6220ce929a8fba08c32f7dedd5798c05b82fe3e..629f32099d91efb146e1f88465f3060f00f2f4cc 100644 --- a/build.zig +++ b/build.zig @@ -6,26 +6,6 @@ pub fn build(b: *std.Build) void { const mode = b.option(std.builtin.Mode, "mode", "") orelse .Debug; const disable_llvm = b.option(bool, "disable_llvm", "use the non-llvm zig codegen") orelse false; - const exe = b.addExecutable(.{ - .name = "zig-oauth2", - .root_source_file = b.path("main.zig"), - .target = target, - .optimize = mode, - }); - deps.addAllTo(exe); - exe.use_llvm = !disable_llvm; - exe.use_lld = !disable_llvm; - b.installArtifact(exe); - - const run_cmd = b.addRunArtifact(exe); - run_cmd.step.dependOn(b.getInstallStep()); - if (b.args) |args| { - run_cmd.addArgs(args); - } - - const run_step = b.step("run", "Run the app"); - run_step.dependOn(&run_cmd.step); - const tests = b.addTest(.{ .root_source_file = b.path("test.zig"), .target = target, diff --git a/main.zig b/main.zig deleted file mode 100644 index d29869ff88feb94cd5a5fd28d760824920f269ac..0000000000000000000000000000000000000000 --- a/main.zig +++ /dev/null @@ -1,5 +0,0 @@ -const std = @import("std"); - -pub fn main() anyerror!void { - std.log.info("All your codebase are belong to us.", .{}); -}