Implemented the signature help request.

Refreshes builtin data, added 0.7.1 builtins
This commit is contained in:
Alexandros Naskos
2021-04-02 20:49:01 +03:00
parent 9cc8085699
commit 7f432d8715
11 changed files with 3864 additions and 683 deletions

View File

@@ -1,6 +1,5 @@
const std = @import("std");
const builtin = @import("builtin");
// const build_options = @import("build_options")
var builder: *std.build.Builder = undefined;
@@ -13,7 +12,7 @@ pub fn build(b: *std.build.Builder) !void {
exe.addBuildOption(
[]const u8,
"data_version",
b.option([]const u8, "data_version", "The data version - either 0.7.0 or master.") orelse "master",
b.option([]const u8, "data_version", "The data version - 0.7.0, 0.7.1 or master.") orelse "master",
);
exe.addPackage(.{ .name = "known-folders", .path = "src/known-folders/known-folders.zig" });