diff options
Diffstat (limited to 'build.zig')
-rw-r--r-- | build.zig | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -35,9 +35,11 @@ pub fn build(b: *std.Build) void { .target = target, .optimize = optimize, }); + exe.addLibraryPath(b.path("vendor/SDL/build")); + exe.addIncludePath(b.path("vendor/SDL/include")); exe.linkSystemLibrary("c"); exe.linkSystemLibrary("ncurses"); - exe.linkSystemLibrary("SDL2"); + exe.linkSystemLibrary("SDL3"); // This declares intent for the executable to be installed into the // standard location when the user invokes the "install" step (the default |