summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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"));