diff options
| author | 2022-04-21 22:19:38 +0200 | |
|---|---|---|
| committer | 2022-04-21 22:19:38 +0200 | |
| commit | e4677dcaeb9345f2a5b720bf23360ed75e4a14b4 (patch) | |
| tree | 0af61eadd3281800a7fe42bb4422d40c7f457210 | |
| parent | check explicitly that bindField is implemented (diff) | |
| download | zig-sqlite-e4677dcaeb9345f2a5b720bf23360ed75e4a14b4.tar.gz zig-sqlite-e4677dcaeb9345f2a5b720bf23360ed75e4a14b4.tar.xz zig-sqlite-e4677dcaeb9345f2a5b720bf23360ed75e4a14b4.zip | |
fix readme
Diffstat (limited to '')
| -rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
| @@ -110,7 +110,7 @@ sqlite.addIncludeDir("third_party/zig-sqlite/c"); | |||
| 110 | sqlite.linkLibC(); | 110 | sqlite.linkLibC(); |
| 111 | ``` | 111 | ``` |
| 112 | 112 | ||
| 113 | If you need to define custom [compime-time options](https://www.sqlite.org/compile.html#overview) for sqlite, modify the flags (second argument to `addCSourceFile`). | 113 | If you need to define custom [compile-time options](https://www.sqlite.org/compile.html#overview) for sqlite, modify the flags (second argument to `addCSourceFile`). |
| 114 | 114 | ||
| 115 | Now it's just a matter of linking your `build.zig` target(s) to this library instead of the system one: | 115 | Now it's just a matter of linking your `build.zig` target(s) to this library instead of the system one: |
| 116 | 116 | ||