gpu-dawn: remove xcode_frameworks submodule; Sdk type
Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
parent
5aa06c2234
commit
2caffc8d35
4 changed files with 1682 additions and 1594 deletions
|
|
@ -1,11 +1,7 @@
|
|||
const std = @import("std");
|
||||
const builtin = @import("builtin");
|
||||
const glfw = @import("libs/mach-glfw/build.zig");
|
||||
const gpu_dawn = @import("libs/mach-gpu-dawn/build.zig").Sdk(.{
|
||||
// TODO(build-system): This cannot be imported with the Zig package manager
|
||||
// error: TarUnsupportedFileType
|
||||
.xcode_frameworks = @import("libs/mach-gpu-dawn/libs/xcode-frameworks/build.zig"),
|
||||
});
|
||||
const gpu_dawn = @import("libs/mach-gpu-dawn/build.zig");
|
||||
const gpu = @import("libs/mach-gpu/build.zig").Sdk(.{
|
||||
.gpu_dawn = gpu_dawn,
|
||||
});
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
|
|
@ -4,11 +4,7 @@ pub fn build(b: *std.Build) !void {
|
|||
const optimize = b.standardOptimizeOption(.{});
|
||||
const target = b.standardTargetOptions(.{});
|
||||
const glfw = @import("libs/mach-glfw/build.zig");
|
||||
const gpu_dawn = @import("libs/mach-gpu-dawn/build.zig").Sdk(.{
|
||||
// TODO(build-system): This cannot be imported with the Zig package manager
|
||||
// error: TarUnsupportedFileType
|
||||
.xcode_frameworks = @import("libs/mach-gpu-dawn/libs/xcode-frameworks/build.zig"),
|
||||
});
|
||||
const gpu_dawn = @import("libs/mach-gpu-dawn/build.zig");
|
||||
const gpu = Sdk(.{
|
||||
.gpu_dawn = gpu_dawn,
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue