diff --git a/build.zig b/build.zig index 7b4cd3d..d0af423 100644 --- a/build.zig +++ b/build.zig @@ -50,3 +50,7 @@ pub fn build(b: *std.Build) void { const test_step = b.step("test", "Run library tests"); test_step.dependOn(&run_main_tests.step); } + +// define AwsProtocol to support usage within build.zig as an import +const smithy = @import("src/smithy.zig"); +pub const AwsProtocol = smithy.AwsProtocol;