Added live error checking

This commit is contained in:
nothke
2024-07-04 16:23:16 +02:00
parent 2524dbf206
commit ac6cb02184
3 changed files with 32 additions and 4 deletions

View File

@@ -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,