fix: ensure that main.zig is removed
This commit is contained in:
parent
334c021350
commit
25fa193b1f
|
@ -9,6 +9,8 @@ pub const version = @import("std").SemanticVersion{ .major = 1, .minor = 89, .pa
|
||||||
pub const plot = @import("plot.zig");
|
pub const plot = @import("plot.zig");
|
||||||
pub const backend = switch (@import("zgui_options").backend) {
|
pub const backend = switch (@import("zgui_options").backend) {
|
||||||
.glfw_wgpu => @import("backend_glfw_wgpu.zig"),
|
.glfw_wgpu => @import("backend_glfw_wgpu.zig"),
|
||||||
|
.glfw_opengl3 => @import("backend_glfw_opengl3.zig"),
|
||||||
|
.sdl2_opengl3 => @import("backend_sdl2_opengl3.zig"),
|
||||||
.win32_dx12 => .{}, // TODO:
|
.win32_dx12 => .{}, // TODO:
|
||||||
.no_backend => .{},
|
.no_backend => .{},
|
||||||
};
|
};
|
||||||
|
|
17
src/main.zig
17
src/main.zig
|
@ -1,17 +0,0 @@
|
||||||
//--------------------------------------------------------------------------------------------------
|
|
||||||
//
|
|
||||||
// Zig bindings for 'dear imgui' library. Easy to use, hand-crafted API with default arguments,
|
|
||||||
// named parameters and Zig style text formatting.
|
|
||||||
//
|
|
||||||
//--------------------------------------------------------------------------------------------------
|
|
||||||
pub const version = @import("std").SemanticVersion{ .major = 0, .minor = 9, .patch = 6 };
|
|
||||||
|
|
||||||
pub usingnamespace @import("gui.zig");
|
|
||||||
pub const plot = @import("plot.zig");
|
|
||||||
pub const backend = switch (@import("zgui_options").backend) {
|
|
||||||
.glfw_wgpu => @import("backend_glfw_wgpu.zig"),
|
|
||||||
.glfw_opengl3 => @import("backend_glfw_opengl3.zig"),
|
|
||||||
.sdl2_opengl3 => @import("backend_sdl2_opengl3.zig"),
|
|
||||||
.win32_dx12 => .{}, // TODO:
|
|
||||||
.no_backend => .{},
|
|
||||||
};
|
|
Loading…
Reference in New Issue