Fixed projectSetup.sh

This commit is contained in:
G3bE 2020-02-15 20:06:02 +10:00
parent b2c91a2607
commit 90336e3246
Failed to generate hash of commit
2 changed files with 2 additions and 1 deletions

1
.gitignore vendored
View file

@ -1,4 +1,5 @@
zig-cache/ zig-cache/
.idea/ .idea/
Project/*
**/.DS_Store **/.DS_Store

View file

@ -11,7 +11,7 @@ echo 'const Builder = @import("std").build.Builder;
pub fn build(b: *Builder) void { pub fn build(b: *Builder) void {
const mode = b.standardReleaseOptions(); const mode = b.standardReleaseOptions();
const exe = b.addExecutable('"$PROJECT_NAME"', "src/main.zig"); const exe = b.addExecutable("'"$PROJECT_NAME"'", "src/main.zig");
exe.setBuildMode(mode); exe.setBuildMode(mode);
exe.linkSystemLibrary("raylib"); exe.linkSystemLibrary("raylib");
exe.install(); exe.install();