build: fix transitive resolution of mach_core
Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
parent
4e091f1cb8
commit
c77619045f
1 changed files with 3 additions and 2 deletions
|
|
@ -120,11 +120,11 @@ pub const App = struct {
|
||||||
});
|
});
|
||||||
try deps.append(.{ .name = "mach-sysaudio", .module = mach_sysaudio_dep.module("mach-sysaudio") });
|
try deps.append(.{ .name = "mach-sysaudio", .module = mach_sysaudio_dep.module("mach-sysaudio") });
|
||||||
|
|
||||||
const mach_core = mach_builder.dependency("mach_core", .{
|
const mach_core_dep = mach_builder.dependency("mach_core", .{
|
||||||
.target = options.target,
|
.target = options.target,
|
||||||
.optimize = options.optimize,
|
.optimize = options.optimize,
|
||||||
});
|
});
|
||||||
const app = try core.App.init(app_builder, mach_core.builder, .{
|
const app = try core.App.init(app_builder, mach_core_dep.builder, .{
|
||||||
.name = options.name,
|
.name = options.name,
|
||||||
.src = options.src,
|
.src = options.src,
|
||||||
.target = options.target,
|
.target = options.target,
|
||||||
|
|
@ -133,6 +133,7 @@ pub const App = struct {
|
||||||
.deps = deps.items,
|
.deps = deps.items,
|
||||||
.res_dirs = options.res_dirs,
|
.res_dirs = options.res_dirs,
|
||||||
.watch_paths = options.watch_paths,
|
.watch_paths = options.watch_paths,
|
||||||
|
.mach_core_mod = mach_core_dep.module("mach-core"),
|
||||||
});
|
});
|
||||||
return .{
|
return .{
|
||||||
.core = app,
|
.core = app,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue