summary refs log tree commit diff
path: root/build.zig
diff options
context:
space:
mode:
Diffstat (limited to 'build.zig')
-rw-r--r--build.zig3
1 files changed, 1 insertions, 2 deletions
diff --git a/build.zig b/build.zig
index 3803827..7b29a00 100644
--- a/build.zig
+++ b/build.zig
@@ -14,7 +14,6 @@ pub fn build(b: *std.build.Builder) void {
     exe.addCSourceFile("src/GameTick.cpp", &cxxflags);
     exe.addCSourceFile("src/Globals.cpp", &cxxflags);
     exe.addCSourceFile("src/MacInput.cpp", &cxxflags);
-    exe.addCSourceFile("src/Main.cpp", &cxxflags);
     exe.addCSourceFile("src/Models.cpp", &cxxflags);
     exe.addCSourceFile("src/Person.cpp", &cxxflags);
     exe.addCSourceFile("src/Quaternions.cpp", &cxxflags);
@@ -30,10 +29,10 @@ pub fn build(b: *std.build.Builder) void {
     exe.linkSystemLibrary("GL");
     exe.linkSystemLibrary("GLU");
     exe.linkSystemLibrary("SDL");
-    exe.linkSystemLibrary("SDL_image");
     exe.linkSystemLibrary("alut");
     exe.linkSystemLibrary("c++");
     exe.linkSystemLibrary("openal");
+    exe.linkSystemLibrary("vorbisfile");
 
     // Standard target options allows the person running `zig build` to choose
     // what target to build for. Here we do not override the defaults, which