Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions build.zig
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,15 @@ pub fn build(b: *std.Build) void {
module.addIncludePath(b.path("libs/cbullet"));
module.addIncludePath(b.path("libs/bullet"));

module.link_libc = true;
module.link_libcpp = true;

const cbullet_lib = b.addLibrary(.{
.name = "cbullet",
.root_module = module,
});
b.installArtifact(cbullet_lib);

cbullet_lib.linkLibC();
cbullet_lib.linkLibCpp();

const test_step = b.step("test", "Run zbullet tests");

const zmath = b.dependency("zmath", .{});
Expand Down
1 change: 0 additions & 1 deletion src/zbullet.zig
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
// Zig bindings for Bullet Physics SDK

const builtin = @import("builtin");
const std = @import("std");
const Mutex = std.Thread.Mutex;
const expect = std.testing.expect;
Expand Down
Loading