Adversarial C2 Protocol Implemented in Zig

Include license and readme in build output

This is probably required for GPL compliance :-D

+8
+5
README.md
··· 4 4 It is useful for developing clients either in Zig, or in any other language using the C bindings. 5 5 6 6 Binary releases can be downloaded [here](https://cloud.zambito.xyz/s/7jJPTm68Zp3mN8F). 7 + 8 + The code for this can be found here: 9 + 10 + - https://tangled.org/zambyte.robbyzambito.me/zaprus 11 + - https://git.robbyzambito.me/zaprus
+3
build.zig
··· 7 7 // build runner to parallelize the build automatically (and the cache system to 8 8 // know when a step doesn't need to be re-run). 9 9 pub fn build(b: *std.Build) void { 10 + // Ensure the license is included in the output directory 11 + b.installFile("LICENSE.md", "LICENSE.md"); 12 + b.installFile("README.md", "README.md"); 10 13 // Standard target options allow the person running `zig build` to choose 11 14 // what target to build for. Here we do not override the defaults, which 12 15 // means any target is allowed, and the default is native. Other options