From ac6cb021843a8b5e6c591cd3b67571f911b26631 Mon Sep 17 00:00:00 2001 From: nothke Date: Thu, 4 Jul 2024 16:23:16 +0200 Subject: [PATCH] Added live error checking --- build.zig | 22 +++++++++++++++++++++- readme.md | 10 ++++++++++ src/main.zig | 4 +--- 3 files changed, 32 insertions(+), 4 deletions(-) diff --git a/build.zig b/build.zig index e899bc6..381883c 100644 --- a/build.zig +++ b/build.zig @@ -6,6 +6,8 @@ pub fn build(b: *std.Build) void { const dep_sokol = b.dependency("sokol", .{ .target = target, .optimize = optimize }); + // Exe + const exe = b.addExecutable(.{ .name = "sok", .root_source_file = b.path("src/main.zig"), @@ -15,11 +17,27 @@ pub fn build(b: *std.Build) void { exe.root_module.addImport("sokol", dep_sokol.module("sokol")); - // Set this to hide console + // Set this to hide console on windows //exe.subsystem = .Windows; b.installArtifact(exe); + // Check step (for ZLS) + + const exe_check = b.addExecutable(.{ + .name = "check_step", + .root_source_file = b.path("src/main.zig"), + .target = target, + .optimize = optimize, + }); + + exe_check.root_module.addImport("sokol", dep_sokol.module("sokol")); + + const check = b.step("check", "Check if project compiles"); + check.dependOn(&exe_check.step); + + // Run + const run_cmd = b.addRunArtifact(exe); run_cmd.step.dependOn(b.getInstallStep()); @@ -31,6 +49,8 @@ pub fn build(b: *std.Build) void { const run_step = b.step("run", "Run the app"); run_step.dependOn(&run_cmd.step); + // Tests + const exe_unit_tests = b.addTest(.{ .root_source_file = b.path("src/main.zig"), .target = target, diff --git a/readme.md b/readme.md index bd706e5..43e1d0f 100644 --- a/readme.md +++ b/readme.md @@ -12,6 +12,16 @@ To build, you need to have zig master (you can use [zvm](https://www.zvm.app/) t Note that if you change shaders, you have to recompile them manually - run compile_shaders.bat. +### Live error checking + +This project has been configured so that zls can show live compile errors on save. To make it work, you need to set these zls config params (in VSCode just copy these to your preferences): +``` + "zig.zls.enableBuildOnSave": true, + "zig.zls.buildOnSaveStep": "check" +``` + +Also, if you're in VSCode, install ErrorLens extension so you can see the errors inline. + ## Why zig? Zig is a low level language and toolchain that is designed as a "better C". Its main goal is to be simple, robust and fast. A few strong points: diff --git a/src/main.zig b/src/main.zig index 9c3f8e8..a35247d 100644 --- a/src/main.zig +++ b/src/main.zig @@ -1,7 +1,7 @@ const std = @import("std"); const sokol = @import("sokol"); - const sg = sokol.gfx; +const Event = sokol.app.Event; const shader = @import("shaders/triangle2.glsl.zig"); @@ -144,8 +144,6 @@ export fn cleanup() void { std.log.info("Ended", .{}); } -const Event = sokol.app.Event; - export fn event(eptr: [*c]const Event) void { const e: *const Event = @ptrCast(eptr);