File tree Expand file tree Collapse file tree 3 files changed +6
-0
lines changed Expand file tree Collapse file tree 3 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -24,6 +24,8 @@ pub fn build(b: *std.Build) void {
2424 exe .linkSystemLibrary ("SDL2" );
2525 exe .linkSystemLibrary ("OpenGL32" );
2626
27+ exe .addLibraryPath ( .{ .path = "lib/SDL2" } );
28+
2729 exe .addIncludePath ( .{ .path = "lib/imgui" } );
2830 exe .addIncludePath ( .{ .path = "lib/SDL2/include" } );
2931 exe .addIncludePath ( .{ .path = "lib/opengl" } );
Original file line number Diff line number Diff line change @@ -23,6 +23,8 @@ pub fn build(b: *std.Build) void {
2323 exe .linkSystemLibrary ("dwmapi" );
2424 exe .linkSystemLibrary ("SDL2" );
2525
26+ exe .addLibraryPath ( .{ .path = "lib/SDL2" } );
27+
2628 exe .addIncludePath ( .{ .path = "lib/imgui" } );
2729 exe .addIncludePath ( .{ .path = "lib/SDL2/include" } );
2830
Original file line number Diff line number Diff line change @@ -23,6 +23,8 @@ pub fn build(b: *std.Build) void {
2323 exe .linkSystemLibrary ("dwmapi" );
2424 exe .linkSystemLibrary ("SDL3" );
2525
26+ exe .addLibraryPath ( .{ .path = "lib/SDL3" } );
27+
2628 exe .addIncludePath ( .{ .path = "lib/imgui" } );
2729 exe .addIncludePath ( .{ .path = "lib/SDL3/include" } );
2830
You can’t perform that action at this time.
0 commit comments