Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
karlseguin committed Jun 26, 2024
1 parent d3f3660 commit 68d5588
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ const zqlite = b.dependency("zqlite", .{
.optimize = optimize,
});
exe.addCSourceFile(.{
.file = std.Build.path(b, "lib/sqlite3/sqlite3.c"),
.file = b.path("lib/sqlite3/sqlite3.c"),
.flags = &[_][]const u8{
"-DSQLITE_DQS=0",
"-DSQLITE_DEFAULT_WAL_SYNCHRONOUS=1",
Expand All @@ -86,7 +86,7 @@ exe.addCSourceFile(.{
"-DHAVE_USLEEP=0",
},
});
exe.addIncludePath(std.Build.path(b, "lib/sqlite3/"));
exe.addIncludePath(b.path("lib/sqlite3/"));
exe.root_module.addImport("zqlite", zqlite.module("zqlite"));
```

Expand Down

0 comments on commit 68d5588

Please sign in to comment.