2021-07-06 20:53:10 -07:00
|
|
|
const std = @import("std");
|
|
|
|
const Builder = std.build.Builder;
|
|
|
|
|
2021-10-30 21:24:15 -07:00
|
|
|
const system_sdk = @import("system_sdk.zig");
|
|
|
|
|
2021-07-06 20:53:10 -07:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2021-07-10 01:54:16 -07:00
|
|
|
pub const LinuxWindowManager = enum {
|
|
|
|
X11,
|
|
|
|
Wayland,
|
|
|
|
};
|
2021-07-06 20:53:10 -07:00
|
|
|
|
|
|
|
pub const Options = struct {
|
2021-07-16 11:52:38 -07:00
|
|
|
/// Not supported on macOS.
|
2021-07-10 01:54:16 -07:00
|
|
|
vulkan: bool = true,
|
|
|
|
|
2021-07-16 11:52:38 -07:00
|
|
|
/// Only respected on macOS.
|
2021-07-10 01:54:16 -07:00
|
|
|
metal: bool = true,
|
|
|
|
|
2021-07-16 11:52:38 -07:00
|
|
|
/// Deprecated on macOS.
|
2021-07-10 01:54:16 -07:00
|
|
|
opengl: bool = false,
|
|
|
|
|
2021-10-16 16:53:15 -07:00
|
|
|
/// Not supported on macOS. GLES v3.2 only, currently.
|
2021-07-10 01:54:16 -07:00
|
|
|
gles: bool = false,
|
|
|
|
|
2021-07-16 11:52:38 -07:00
|
|
|
/// Only respected on Linux.
|
2021-07-10 11:25:04 -07:00
|
|
|
linux_window_manager: LinuxWindowManager = .X11,
|
2021-10-30 21:47:48 -07:00
|
|
|
|
|
|
|
/// System SDK options.
|
|
|
|
system_sdk: system_sdk.Options = .{},
|
2021-07-06 20:53:10 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
pub fn link(b: *Builder, step: *std.build.LibExeObjStep, options: Options) void {
|
2021-10-24 13:50:14 -07:00
|
|
|
const lib = buildLibrary(b, step, options);
|
|
|
|
step.linkLibrary(lib);
|
|
|
|
linkGLFWDependencies(b, step, options);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn buildLibrary(b: *Builder, step: *std.build.LibExeObjStep, options: Options) *std.build.LibExeObjStep {
|
|
|
|
var main_abs = std.fs.path.join(b.allocator, &.{ thisDir(), "src/main.zig" }) catch unreachable;
|
|
|
|
const lib = b.addStaticLibrary("glfw", main_abs);
|
|
|
|
lib.setBuildMode(step.build_mode);
|
|
|
|
lib.setTarget(step.target);
|
|
|
|
|
2021-10-30 21:24:15 -07:00
|
|
|
system_sdk.include(b, step, .{});
|
2021-07-06 20:53:10 -07:00
|
|
|
const target = (std.zig.system.NativeTargetInfo.detect(b.allocator, step.target) catch unreachable).target;
|
|
|
|
switch (target.os.tag) {
|
|
|
|
.windows => {
|
2021-10-24 13:42:20 -07:00
|
|
|
var sources = std.ArrayList([]const u8).init(b.allocator);
|
2021-07-10 01:36:15 -07:00
|
|
|
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| {
|
2021-10-24 13:42:20 -07:00
|
|
|
var abs_path = std.fs.path.join(b.allocator, &.{ thisDir(), path }) catch unreachable;
|
2021-07-10 01:36:15 -07:00
|
|
|
sources.append(abs_path) catch unreachable;
|
|
|
|
}
|
2021-10-24 13:50:14 -07:00
|
|
|
lib.addCSourceFiles(sources.items, &.{"-D_GLFW_WIN32"});
|
2021-07-06 20:53:10 -07:00
|
|
|
},
|
|
|
|
.macos => {
|
2021-10-24 13:42:20 -07:00
|
|
|
var sources = std.ArrayList([]const u8).init(b.allocator);
|
2021-07-06 20:53:10 -07:00
|
|
|
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| {
|
2021-10-24 13:42:20 -07:00
|
|
|
var abs_path = std.fs.path.join(b.allocator, &.{ thisDir(), path }) catch unreachable;
|
2021-07-06 20:53:10 -07:00
|
|
|
sources.append(abs_path) catch unreachable;
|
|
|
|
}
|
2021-10-24 13:50:14 -07:00
|
|
|
lib.addCSourceFiles(sources.items, &.{"-D_GLFW_COCOA"});
|
2021-07-06 20:53:10 -07:00
|
|
|
},
|
|
|
|
else => {
|
2021-10-16 18:04:10 -07:00
|
|
|
// TODO(future): for now, Linux must be built with glibc, not musl:
|
2021-07-29 19:11:08 -07:00
|
|
|
//
|
|
|
|
// ```
|
|
|
|
// ld.lld: error: cannot create a copy relocation for symbol stderr
|
|
|
|
// thread 2004762 panic: attempt to unwrap error: LLDReportedFailure
|
|
|
|
// ```
|
|
|
|
step.target.abi = .gnu;
|
2021-10-24 13:50:14 -07:00
|
|
|
lib.setTarget(step.target);
|
2021-07-29 19:11:08 -07:00
|
|
|
|
2021-10-24 13:42:20 -07:00
|
|
|
var general_sources = std.ArrayList([]const u8).init(b.allocator);
|
2021-07-26 01:29:32 -07:00
|
|
|
const flag = switch (options.linux_window_manager) {
|
|
|
|
.X11 => "-D_GLFW_X11",
|
|
|
|
.Wayland => "_D_GLFW_WAYLAND",
|
|
|
|
};
|
2021-07-10 11:25:04 -07:00
|
|
|
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",
|
2021-07-06 20:53:10 -07:00
|
|
|
|
2021-07-10 11:25:04 -07:00
|
|
|
// 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| {
|
2021-10-24 13:42:20 -07:00
|
|
|
var abs_path = std.fs.path.join(b.allocator, &.{ thisDir(), path }) catch unreachable;
|
2021-07-10 11:25:04 -07:00
|
|
|
general_sources.append(abs_path) catch unreachable;
|
|
|
|
}
|
2021-10-24 13:50:14 -07:00
|
|
|
lib.addCSourceFiles(general_sources.items, &.{flag});
|
2021-07-10 11:25:04 -07:00
|
|
|
|
|
|
|
switch (options.linux_window_manager) {
|
|
|
|
.X11 => {
|
2021-10-24 13:42:20 -07:00
|
|
|
var x11_sources = std.ArrayList([]const u8).init(b.allocator);
|
2021-07-10 11:25:04 -07:00
|
|
|
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| {
|
2021-10-24 13:42:20 -07:00
|
|
|
var abs_path = std.fs.path.join(b.allocator, &.{ thisDir(), path }) catch unreachable;
|
2021-07-10 11:25:04 -07:00
|
|
|
x11_sources.append(abs_path) catch unreachable;
|
|
|
|
}
|
2021-10-24 13:50:14 -07:00
|
|
|
lib.addCSourceFiles(x11_sources.items, &.{flag});
|
2021-07-10 11:25:04 -07:00
|
|
|
},
|
|
|
|
.Wayland => {
|
2021-10-24 13:42:20 -07:00
|
|
|
var wayland_sources = std.ArrayList([]const u8).init(b.allocator);
|
2021-07-10 11:25:04 -07:00
|
|
|
for ([_][]const u8{
|
|
|
|
"upstream/glfw/src/wl_monitor.c",
|
|
|
|
"upstream/glfw/src/wl_window.c",
|
|
|
|
"upstream/glfw/src/wl_init.c",
|
|
|
|
}) |path| {
|
2021-10-24 13:42:20 -07:00
|
|
|
var abs_path = std.fs.path.join(b.allocator, &.{ thisDir(), path }) catch unreachable;
|
2021-07-10 11:25:04 -07:00
|
|
|
wayland_sources.append(abs_path) catch unreachable;
|
|
|
|
}
|
2021-10-24 13:50:14 -07:00
|
|
|
lib.addCSourceFiles(wayland_sources.items, &.{flag});
|
2021-07-10 11:25:04 -07:00
|
|
|
},
|
|
|
|
}
|
2021-07-06 20:53:10 -07:00
|
|
|
},
|
|
|
|
}
|
2021-10-24 13:50:14 -07:00
|
|
|
linkGLFWDependencies(b, lib, options);
|
|
|
|
lib.install();
|
|
|
|
return lib;
|
2021-07-06 20:53:10 -07:00
|
|
|
}
|
|
|
|
|
2021-07-10 01:54:16 -07:00
|
|
|
fn thisDir() []const u8 {
|
|
|
|
return std.fs.path.dirname(@src().file) orelse ".";
|
|
|
|
}
|
|
|
|
|
2021-10-24 13:50:14 -07:00
|
|
|
fn linkGLFWDependencies(b: *Builder, step: *std.build.LibExeObjStep, options: Options) void {
|
2021-07-06 20:53:10 -07:00
|
|
|
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);
|
|
|
|
|
2021-10-16 17:30:56 -07:00
|
|
|
var vulkan_include_dir = std.fs.path.join(b.allocator, &.{ thisDir(), "upstream/vulkan_headers/include" }) catch unreachable;
|
|
|
|
defer b.allocator.free(vulkan_include_dir);
|
|
|
|
step.addIncludeDir(vulkan_include_dir);
|
|
|
|
|
2021-07-26 01:09:19 -07:00
|
|
|
step.linkLibC();
|
2021-10-30 21:24:15 -07:00
|
|
|
system_sdk.include(b, step, .{});
|
2021-07-06 20:53:10 -07:00
|
|
|
const target = (std.zig.system.NativeTargetInfo.detect(b.allocator, step.target) catch unreachable).target;
|
|
|
|
switch (target.os.tag) {
|
2021-07-10 01:36:15 -07:00
|
|
|
.windows => {
|
2021-07-25 22:30:20 -07:00
|
|
|
step.linkSystemLibrary("gdi32");
|
|
|
|
if (options.opengl) {
|
2021-07-26 01:11:12 -07:00
|
|
|
step.linkSystemLibrary("opengl32");
|
2021-07-25 22:30:20 -07:00
|
|
|
}
|
|
|
|
if (options.gles) {
|
2021-10-16 16:53:15 -07:00
|
|
|
step.linkSystemLibrary("GLESv3");
|
2021-07-25 22:30:20 -07:00
|
|
|
}
|
2021-07-10 01:36:15 -07:00
|
|
|
},
|
2021-07-06 20:53:10 -07:00
|
|
|
.macos => {
|
|
|
|
step.linkFramework("IOKit");
|
|
|
|
step.linkFramework("CoreFoundation");
|
2021-07-26 01:12:00 -07:00
|
|
|
if (options.metal) {
|
|
|
|
step.linkFramework("Metal");
|
|
|
|
}
|
2021-07-10 01:54:16 -07:00
|
|
|
if (options.opengl) {
|
2021-07-06 20:53:10 -07:00
|
|
|
step.linkFramework("OpenGL");
|
|
|
|
}
|
2021-11-05 12:20:24 -07:00
|
|
|
step.linkSystemLibrary("objc");
|
|
|
|
step.linkFramework("AppKit");
|
|
|
|
|
|
|
|
// TODO(system_sdk): update MacOS system SDK so we can remove this, see:
|
|
|
|
// https://github.com/hexops/mach/pull/63#issuecomment-962141088
|
|
|
|
switch (@import("builtin").target.os.tag) {
|
|
|
|
.macos => {},
|
|
|
|
else => {
|
|
|
|
step.linkFramework("CoreServices");
|
|
|
|
step.linkFramework("CoreGraphics");
|
|
|
|
step.linkFramework("Foundation");
|
|
|
|
},
|
2021-10-29 12:24:40 -07:00
|
|
|
}
|
2021-07-06 20:53:10 -07:00
|
|
|
},
|
|
|
|
else => {
|
|
|
|
// Assume Linux-like
|
2021-07-26 01:29:32 -07:00
|
|
|
switch (options.linux_window_manager) {
|
2021-07-29 19:11:08 -07:00
|
|
|
.X11 => {
|
|
|
|
step.linkSystemLibrary("X11");
|
|
|
|
step.linkSystemLibrary("xcb");
|
|
|
|
step.linkSystemLibrary("Xau");
|
|
|
|
step.linkSystemLibrary("Xdmcp");
|
|
|
|
},
|
2021-07-26 01:29:32 -07:00
|
|
|
.Wayland => step.linkSystemLibrary("wayland-client"),
|
|
|
|
}
|
2021-07-29 19:11:08 -07:00
|
|
|
// Note: no need to link against vulkan, GLFW finds it dynamically at runtime.
|
|
|
|
// https://www.glfw.org/docs/3.3/vulkan_guide.html#vulkan_loader
|
2021-07-26 01:29:32 -07:00
|
|
|
if (options.opengl) {
|
|
|
|
step.linkSystemLibrary("GL");
|
|
|
|
}
|
|
|
|
if (options.gles) {
|
2021-10-16 18:00:40 -07:00
|
|
|
step.linkSystemLibrary("GLESv3");
|
2021-07-26 01:29:32 -07:00
|
|
|
}
|
2021-07-06 20:53:10 -07:00
|
|
|
},
|
|
|
|
}
|
2021-07-10 01:01:51 -07:00
|
|
|
}
|
2021-11-05 12:20:24 -07:00
|
|
|
|