tools

various tools I have been using throughout the years
Log | Files | Refs | README | LICENSE

BUILD (397B)


      1 load("@rules_zig//zig:defs.bzl", "zig_binary")
      2 load("//bazel:local-deploy.bzl", "local_deploy")
      3 
      4 zig_binary(
      5     name = "speediness",
      6     srcs = glob(["src/*.zig"]),
      7     main = "src/main.zig",
      8     visibility = ["//visibility:public"],
      9     zigopts = [
     10         "-O",
     11         "ReleaseSafe",
     12         "-Doptimize=ReleaseSafe",
     13     ],
     14 )
     15 
     16 local_deploy(
     17     name = "deploy",
     18     srcs = [":speediness"],
     19 )