fix(build): install headers

This commit is contained in:
phaneron 2024-07-03 14:38:11 -04:00
parent cbd169a26a
commit 937e283e0b
2 changed files with 3 additions and 1 deletions

View file

@ -58,6 +58,8 @@ pub fn build(b: *std.Build) void {
.flags = &.{"-std=c++11"}
});
bc.installHeadersDirectory(b.path("bc"), "bc", .{ .include_extensions = &.{"hpp"} });
// BcTest executable
const bc_test_exe = b.addExecutable(.{
.name = "BcTest",