From 3c33e0469f64f4f5709be3327f2abef1a5ee5ef5 Mon Sep 17 00:00:00 2001 From: Nikolas Date: Mon, 25 Aug 2025 15:47:31 +0200 Subject: [PATCH] Format project templates --- project_setup.ps1 | 9 ++++++++- project_setup.sh | 9 ++++++++- 2 files changed, 16 insertions(+), 2 deletions(-) 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);