You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@ If you need a specific version of SQLite, or specific SQLite compilation options
20
20
21
21
## Installation:
22
22
23
-
#### Manual Installation (ex. into a Framework)
23
+
#### Manual Installation (ex. into a Framework):
24
24
25
25
1. Download a copy of SQLiteLib.
26
26
2. Embed the `SQLiteLib.xcodeproj` project in your own project.
@@ -30,7 +30,7 @@ If you need a specific version of SQLite, or specific SQLite compilation options
30
30
That's it! (You'll probably also want to `#include "sqlite3.h"` somewhere. SQLiteLib copies this generated file to its project directory.)
31
31
32
32
33
-
#### Using in Swift
33
+
#### Using in Swift:
34
34
35
35
You probably shouldn't be using the raw SQLite C API in Swift. There are a bunch of great libraries available that wrap it.
36
36
@@ -42,7 +42,7 @@ For example: ([GRDB.swift](https://github.com/groue/GRDB.swift)).
42
42
By default, SQLiteLib builds SQLite with options that match the built-in system version of SQLite on OSX and iOS (as of OSX 10.11.5, iOS 9.3.2), [with one exception*](#additional-details).
> By default, SQLiteLib compiles SQLite with options that match the built-in OSX/iOS version of SQLite (as of OSX 10.11, iOS 9.3.2), with one exception*.
48
48
> You only need to follow the steps below if you wish to customize the options.
@@ -61,7 +61,7 @@ That's it.
61
61
There is no need to modify any other files.
62
62
63
63
64
-
#### Compiling a Specific Version of SQLite
64
+
#### Compiling a Specific Version of SQLite:
65
65
66
66
SQLiteLib currently ships with the source for SQLite 3.13.0.
67
67
@@ -90,7 +90,7 @@ You'll want the file named "sqlite-src-*version*.zip".
90
90
## Additional Details:
91
91
92
92
93
-
#### Default Compilation Options
93
+
#### Default Compilation Options:
94
94
95
95
The built-in OSX/iOS version of SQLite were built with the following compilation options (as of OSX 10.11.5, iOS 9.3.2):
96
96
@@ -147,7 +147,7 @@ It is strongly recommended that you do not edit this file. If you'd like to spec
147
147
148
148
149
149
150
-
#### Build Locations
150
+
#### Build Locations:
151
151
152
152
SQLiteLib generates intermediate files in [${DERIVED_SOURCES_DIR}](https://developer.apple.com/library/mac/documentation/DeveloperTools/Reference/XcodeBuildSettingRef/1-Build_Setting_Reference/build_setting_ref.html#//apple_ref/doc/uid/TP40003931-CH3-SW43).
153
153
@@ -161,7 +161,7 @@ The generated SQLite amalgamation files are copied to:
161
161
162
162
## Notes:
163
163
164
-
##### "sqlite3.c" shows as red/missing in Xcode
164
+
##### "sqlite3.c" shows as red/missing in Xcode:
165
165
166
166
Xcode (verified in Version 7.3.1 (7D1014)) will always show "sqlite3.c" as red/missing, even after a build.
0 commit comments