Skip to content

Commit

Permalink
addLibPath has been replaced with addLibraryPath
Browse files Browse the repository at this point in the history
  • Loading branch information
paoda authored and ikskuh committed Sep 23, 2022
1 parent b3fe37a commit 6a9e376
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sdk.zig
Expand Up @@ -259,7 +259,7 @@ pub fn link(sdk: *Sdk, exe: *LibExeObjStep, linkage: std.build.LibExeObjStep.Lin
// link the right libraries
if (target.abi == .msvc) {
// and links those as normal libraries
exe.addLibPath(sdk_paths.libs);
exe.addLibraryPath(sdk_paths.libs);
exe.linkSystemLibraryName("SDL2");
} else {
const file_name = switch (linkage) {
Expand Down

0 comments on commit 6a9e376

Please sign in to comment.