about summary refs log tree commit diff
path: root/build.zig
blob: f0172b8e722d368b397db6dbbd7fdb8b5007065b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
// Build recipe
// Copyright (C) 2021-2023, 2025  Nguyễn Gia Phong
//
// This file is part of gfz.
//
// gfz is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published
// by the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// gfz is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with gfz.  If not, see <https://www.gnu.org/licenses/>.

const Build = @import("std").Build;

pub fn build(b: *Build) void {
    const target = b.standardTargetOptions(.{});
    const optimize = b.standardOptimizeOption(.{});
    const module = b.addModule("gfz", .{
        .root_source_file = b.path("src/gfz.zig"),
        .target = target,
        .optimize = optimize,
    });
    module.linkSystemLibrary("glfw", .{});
    module.linkSystemLibrary("c", .{});

    const tests = b.addTest(.{ .root_module = module });
    b.step("test", "Run library tests").dependOn(&b.addRunArtifact(tests).step);

    const example = b.addExecutable(.{
        .name = "gfz-context",
        .root_source_file = b.path("examples/context.zig"),
        .target = target,
        .optimize = optimize,
    });
    example.root_module.addImport("gfz", module);
    b.step("example", "Run example").dependOn(&b.addRunArtifact(example).step);
}