Changed resolution, switched to LLVM backend, from selfhosted one

This commit is contained in:
2026-05-01 12:54:41 +02:00
parent 680e07c976
commit e475814c85
2 changed files with 3 additions and 2 deletions

View File

@@ -69,6 +69,7 @@ pub fn build(b: *std.Build) void {
// don't need and to put everything under a single module. // don't need and to put everything under a single module.
const exe = b.addExecutable(.{ const exe = b.addExecutable(.{
.name = "base_road_network", .name = "base_road_network",
.use_llvm = true,
.root_module = b.createModule(.{ .root_module = b.createModule(.{
// b.createModule defines a new module just like b.addModule but, // b.createModule defines a new module just like b.addModule but,
// unlike b.addModule, it does not expose the module to consumers of // unlike b.addModule, it does not expose the module to consumers of

View File

@@ -1,9 +1,9 @@
const clr = @import("raylib").Color; const clr = @import("raylib").Color;
/// Screen Width /// Screen Width
pub const WIDTH = 1366; pub const WIDTH = 1920;
/// Screen Height /// Screen Height
pub const HEIGHT = 768; pub const HEIGHT = 1080;
pub const BACKGROUND_COLOR = clr.light_gray; pub const BACKGROUND_COLOR = clr.light_gray;
/// Base node radius /// Base node radius