summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Vincent Rischmann2024-02-07 22:47:31 +0100
committerGravatar GitHub2024-02-07 22:47:31 +0100
commita3095acc98ef1eb32549dedac032bba8399afca0 (patch)
tree50614ac5a3dd70fb16bf87d3c1e8331f3dbb7764
parentMerge pull request #152 from jiacai2050/master (diff)
parentUpdate README.md (diff)
downloadzig-sqlite-a3095acc98ef1eb32549dedac032bba8399afca0.tar.gz
zig-sqlite-a3095acc98ef1eb32549dedac032bba8399afca0.tar.xz
zig-sqlite-a3095acc98ef1eb32549dedac032bba8399afca0.zip
Merge pull request #155 from MFAshby/patch-2
Update README.md
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 5af3846..c1b6e04 100644
--- a/README.md
+++ b/README.md
@@ -106,7 +106,7 @@ const sqlite = b.dependency("sqlite", .{
106 .optimize = optimize, 106 .optimize = optimize,
107}); 107});
108 108
109exe.addModule("sqlite", sqlite.module("sqlite")); 109exe.root_module.addImport("sqlite", sqlite.module("sqlite"));
110 110
111// links the bundled sqlite3, so leave this out if you link the system one 111// links the bundled sqlite3, so leave this out if you link the system one
112exe.linkLibrary(sqlite.artifact("sqlite")); 112exe.linkLibrary(sqlite.artifact("sqlite"));