complete name change

This commit is contained in:
Emil Lerch 2023-06-15 20:26:49 -07:00
parent 500847f571
commit 6f1e37b391
Signed by: lobo
GPG Key ID: A7B62D657EF764F8
2 changed files with 6 additions and 6 deletions

View File

@ -16,7 +16,7 @@ pub fn build(b: *std.Build) void {
const optimize = b.standardOptimizeOption(.{});
const exe = b.addExecutable(.{
.name = "faas-proxy",
.name = "flexilib",
// In this case the main source file is merely a path, however, in more
// complicated build scripts, this could be a generated file.
.root_source_file = .{ .path = "src/main.zig" },
@ -27,7 +27,7 @@ pub fn build(b: *std.Build) void {
exe.linkLibC();
const lib = b.addSharedLibrary(.{
.name = "faas-proxy-sample-lib",
.name = "flexilib-sample-lib",
// In this case the main source file is merely a path, however, in more
// complicated build scripts, this could be a generated file.
.root_source_file = .{ .path = "src/main-lib.zig" },
@ -37,7 +37,7 @@ pub fn build(b: *std.Build) void {
lib.linkLibC();
const interface_lib = b.addStaticLibrary(.{
.name = "libfaasproxy",
.name = "flexilib",
// In this case the main source file is merely a path, however, in more
// complicated build scripts, this could be a generated file.
.root_source_file = .{ .path = "src/interface.zig" },

View File

@ -6,6 +6,6 @@
# Example of match based on an HTTP header. The key is space-delimited:
# <http header key>: <header match prefix> <path match prefix>
Host: iam / = zig-out/lib/libfaas-proxy-sample-lib.so
/c = zig-out/lib/libfaas-proxy-sample-lib-in-c.so
/ = zig-out/lib/libfaas-proxy-sample-lib.so
Host: iam / = zig-out/lib/libflexilib-sample-lib.so
/c = zig-out/lib/libflexilib-in-c.so
/ = zig-out/lib/libflexilib-sample-lib.so