const std = @import("std"); const Builder = std.build.Builder; pub fn build(b: *Builder) void { const mode = b.standardReleaseOptions(); const target = b.standardTargetOptions(.{}); var main_tests = b.addTest("src/main.zig"); main_tests.setBuildMode(mode); main_tests.setTarget(target); link(b, main_tests, .{}); const test_step = b.step("test", "Run library tests"); test_step.dependOn(&main_tests.step); } pub const LinuxWindowManager = enum { X11, Wayland, }; pub const Options = struct { // Not supported on macOS. vulkan: bool = true, // Only respected on macOS. metal: bool = true, // Deprecated on macOS. opengl: bool = false, // Not supported on macOS. gles: bool = false, // Only respected on Linux. linux_window_manager: LinuxWindowManager = .X11, }; pub fn link(b: *Builder, step: *std.build.LibExeObjStep, options: Options) void { var arena = std.heap.ArenaAllocator.init(b.allocator); defer arena.deinit(); const lib = b.addStaticLibrary("engine", "src/main.zig"); lib.setBuildMode(step.build_mode); lib.setTarget(step.target); const target = (std.zig.system.NativeTargetInfo.detect(b.allocator, step.target) catch unreachable).target; switch (target.os.tag) { .windows => { var sources = std.ArrayList([]const u8).init(&arena.allocator); for ([_][]const u8{ // Windows-specific sources "upstream/glfw/src/win32_thread.c", "upstream/glfw/src/wgl_context.c", "upstream/glfw/src/win32_init.c", "upstream/glfw/src/win32_monitor.c", "upstream/glfw/src/win32_time.c", "upstream/glfw/src/win32_joystick.c", "upstream/glfw/src/win32_window.c", // General sources "upstream/glfw/src/monitor.c", "upstream/glfw/src/init.c", "upstream/glfw/src/vulkan.c", "upstream/glfw/src/input.c", "upstream/glfw/src/osmesa_context.c", "upstream/glfw/src/egl_context.c", "upstream/glfw/src/context.c", "upstream/glfw/src/window.c", }) |path| { var abs_path = std.fs.path.join(&arena.allocator, &.{ thisDir(), path }) catch unreachable; sources.append(abs_path) catch unreachable; } lib.addCSourceFiles(sources.items, &.{}); }, .macos => { includeSdkMacOS(b, lib); var sources = std.ArrayList([]const u8).init(&arena.allocator); for ([_][]const u8{ // MacOS-specific sources "upstream/glfw/src/cocoa_joystick.m", "upstream/glfw/src/cocoa_init.m", "upstream/glfw/src/cocoa_window.m", "upstream/glfw/src/cocoa_time.c", "upstream/glfw/src/cocoa_monitor.m", "upstream/glfw/src/nsgl_context.m", "upstream/glfw/src/posix_thread.c", // General sources "upstream/glfw/src/monitor.c", "upstream/glfw/src/init.c", "upstream/glfw/src/vulkan.c", "upstream/glfw/src/input.c", "upstream/glfw/src/osmesa_context.c", "upstream/glfw/src/egl_context.c", "upstream/glfw/src/context.c", "upstream/glfw/src/window.c", }) |path| { var abs_path = std.fs.path.join(&arena.allocator, &.{ thisDir(), path }) catch unreachable; sources.append(abs_path) catch unreachable; } lib.addCSourceFiles(sources.items, &.{"-D_GLFW_COCOA"}); }, else => { // Assume Linux-like var general_sources = std.ArrayList([]const u8).init(&arena.allocator); for ([_][]const u8{ // General Linux-like sources "upstream/glfw/src/posix_time.c", "upstream/glfw/src/posix_thread.c", "upstream/glfw/src/linux_joystick.c", // General sources "upstream/glfw/src/monitor.c", "upstream/glfw/src/init.c", "upstream/glfw/src/vulkan.c", "upstream/glfw/src/input.c", "upstream/glfw/src/osmesa_context.c", "upstream/glfw/src/egl_context.c", "upstream/glfw/src/context.c", "upstream/glfw/src/window.c", }) |path| { var abs_path = std.fs.path.join(&arena.allocator, &.{ thisDir(), path }) catch unreachable; general_sources.append(abs_path) catch unreachable; } lib.addCSourceFiles(general_sources.items, &.{}); switch (options.linux_window_manager) { .X11 => { var x11_sources = std.ArrayList([]const u8).init(&arena.allocator); for ([_][]const u8{ "upstream/glfw/src/x11_init.c", "upstream/glfw/src/x11_window.c", "upstream/glfw/src/x11_monitor.c", "upstream/glfw/src/xkb_unicode.c", "upstream/glfw/src/glx_context.c", }) |path| { var abs_path = std.fs.path.join(&arena.allocator, &.{ thisDir(), path }) catch unreachable; x11_sources.append(abs_path) catch unreachable; } lib.addCSourceFiles(x11_sources.items, &.{}); }, .Wayland => { var wayland_sources = std.ArrayList([]const u8).init(&arena.allocator); for ([_][]const u8{ "upstream/glfw/src/wl_monitor.c", "upstream/glfw/src/wl_window.c", "upstream/glfw/src/wl_init.c", }) |path| { var abs_path = std.fs.path.join(&arena.allocator, &.{ thisDir(), path }) catch unreachable; wayland_sources.append(abs_path) catch unreachable; } lib.addCSourceFiles(wayland_sources.items, &.{}); }, } }, } linkGLFW(b, lib, options); lib.install(); step.linkLibrary(lib); linkGLFW(b, step, options); } fn thisDir() []const u8 { return std.fs.path.dirname(@src().file) orelse "."; } fn linkGLFW(b: *Builder, step: *std.build.LibExeObjStep, options: Options) void { var include_dir = std.fs.path.join(b.allocator, &.{ thisDir(), "upstream/glfw/include" }) catch unreachable; defer b.allocator.free(include_dir); step.addIncludeDir(include_dir); const target = (std.zig.system.NativeTargetInfo.detect(b.allocator, step.target) catch unreachable).target; switch (target.os.tag) { .windows => { // TODO(slimsag): create sdk-windows }, .macos => { includeSdkMacOS(b, step); step.linkFramework("Cocoa"); step.linkFramework("IOKit"); step.linkFramework("CoreFoundation"); if (options.opengl) { step.linkFramework("OpenGL"); } }, else => { // Assume Linux-like // TODO(slimsag): create sdk-linux }, } } fn includeSdkMacOS(b: *Builder, step: *std.build.LibExeObjStep) void { const sdk_root_dir = getSdkRoot(b.allocator, "sdk-macos-11.3") catch unreachable; defer b.allocator.free(sdk_root_dir); var sdk_root_frameworks = std.fs.path.join(b.allocator, &.{ sdk_root_dir, "root/System/Library/Frameworks" }) catch unreachable; defer b.allocator.free(sdk_root_frameworks); step.addFrameworkDir(sdk_root_frameworks); var sdk_root_includes = std.fs.path.join(b.allocator, &.{ sdk_root_dir, "root/usr/include" }) catch unreachable; defer b.allocator.free(sdk_root_includes); step.addSystemIncludeDir(sdk_root_includes); var sdk_root_libs = std.fs.path.join(b.allocator, &.{ sdk_root_dir, "root/usr/lib" }) catch unreachable; defer b.allocator.free(sdk_root_libs); step.addLibPath(sdk_root_libs); // TODO(slimsag): Without setting sysroot, zld fails to resolve /usr/lib/libobjc.A.dylib when specifying -Dtarget=x86_64-macos // Presumably has something to do with https://github.com/ziglang/zig/issues/6996 - I think zld doesn't consider addLibPath/addFrameworkDir // resolution as part of dependant libs: https://github.com/ziglang/zig/blob/2d855745f91852af92ad970feef96e55919993d3/src/link/MachO/Dylib.zig#L477-L483 var sdk_sysroot = std.fs.path.join(b.allocator, &.{ sdk_root_dir, "root/" }) catch unreachable; b.sysroot = sdk_sysroot; // TODO(slimsag): leaks, b.sysroot doesn't get free'd by builder? } // Caller owns returned memory. fn getSdkRoot(allocator: *std.mem.Allocator, comptime name: []const u8) ![]const u8 { const app_data_dir = try std.fs.getAppDataDir(allocator, "mach"); var sdk_root_dir = try std.fs.path.join(allocator, &.{ app_data_dir, name }); if (std.fs.openDirAbsolute(sdk_root_dir, .{})) { return sdk_root_dir; } else |err| return switch (err) { error.FileNotFound => { std.log.info("cloning required sdk..\ngit clone https://github.com/hexops/{s} '{s}'..\n", .{ name, sdk_root_dir }); if (std.mem.eql(u8, name, "sdk-macos-11.3")) { if (!try confirmAppleSDKAgreement()) @panic("cannot continue"); } try std.fs.cwd().makePath(app_data_dir); const argv = &[_][]const u8{ "git", "clone", "https://github.com/hexops/" ++ name }; const child = try std.ChildProcess.init(argv, allocator); child.cwd = app_data_dir; child.stdin = std.io.getStdOut(); child.stderr = std.io.getStdErr(); child.stdout = std.io.getStdOut(); try child.spawn(); _ = try child.wait(); return sdk_root_dir; }, else => err, }; } fn confirmAppleSDKAgreement() !bool { if (std.mem.eql(u8, std.os.getenv("AGREE") orelse "", "true")) return true; const stdin = std.io.getStdIn().reader(); const stdout = std.io.getStdOut().writer(); var buf: [10]u8 = undefined; try stdout.print("This SDK is distributed under the terms of the Xcode and Apple SDKs agreement:\n", .{}); try stdout.print(" https://www.apple.com/legal/sla/docs/xcode.pdf\n", .{}); try stdout.print("\n", .{}); try stdout.print("Do you agree to those terms? [Y/n] ", .{}); if (try stdin.readUntilDelimiterOrEof(buf[0..], '\n')) |user_input| { try stdout.print("\n", .{}); return std.mem.eql(u8, user_input, "y") or std.mem.eql(u8, user_input, "Y") or std.mem.eql(u8, user_input, "yes") or std.mem.eql(u8, user_input, ""); } else { return false; } }