diff --git a/project_setup.ps1 b/project_setup.ps1 index e8bd89c..8a78322 100644 --- a/project_setup.ps1 +++ b/project_setup.ps1 @@ -50,7 +50,14 @@ pub fn build(b: *std.Build) !void { return; } - const exe = b.addExecutable(.{ .name = "$PROJECT_NAME", .root_module = b.createModule(.{ .root_source_file = b.path("src/main.zig"), .optimize = optimize, .target = target }) }); + const exe = b.addExecutable(.{ + .name = "'$PROJECT_NAME'", + .root_module = b.createModule(.{ + .root_source_file = b.path("src/main.zig"), + .optimize = optimize, + .target = target + }), + }); exe.linkLibrary(raylib_artifact); exe.root_module.addImport("raylib", raylib); diff --git a/project_setup.sh b/project_setup.sh index eb374f3..e5a83a9 100755 --- a/project_setup.sh +++ b/project_setup.sh @@ -51,7 +51,14 @@ pub fn build(b: *std.Build) !void { return; } - const exe = b.addExecutable(.{ .name = "'$PROJECT_NAME'", .root_module = b.createModule(.{ .root_source_file = b.path("src/main.zig"), .optimize = optimize, .target = target }) }); + const exe = b.addExecutable(.{ + .name = "'$PROJECT_NAME'", + .root_module = b.createModule(.{ + .root_source_file = b.path("src/main.zig"), + .optimize = optimize, + .target = target + }), + }); exe.linkLibrary(raylib_artifact); exe.root_module.addImport("raylib", raylib);