Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
kassane committed Dec 14, 2022
1 parent 449aa2a commit 551c3af
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.zig
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,14 @@ fn make_example(b: *std.build.Builder, mode: std.builtin.Mode, target: std.zig.C
}

if (target.isDarwin()) {
example.addIncludePath("/Applications/VLC.app/Contents/MacOS/include");
// example.addIncludePath("/Applications/VLC.app/Contents/MacOS/include");
example.linkSystemLibrary("vlc");
} else if (target.isWindows()) {
example.linkSystemLibraryName("vlc.dll");
example.linkSystemLibraryName("vlc");
} else {
example.linkSystemLibrary("vlc");
}

example.linkLibC();
example.install();

Expand Down

0 comments on commit 551c3af

Please sign in to comment.