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
+15Lines changed: 15 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -128,6 +128,21 @@ git submodule init
128
128
git submodule update
129
129
```
130
130
131
+
### Installing SQLiteCpp (vcpkg)
132
+
133
+
Alternatively, you can build and install SQLiteCpp using [vcpkg](https://github.com/Microsoft/vcpkg/) dependency manager:
134
+
135
+
```bash or powershell
136
+
git clone https://github.com/Microsoft/vcpkg.git
137
+
cd vcpkg
138
+
./bootstrap-vcpkg.sh
139
+
./vcpkg integrate install
140
+
./vcpkg install sqlitecpp
141
+
```
142
+
143
+
The SQLiteCpp port in vcpkg is kept up to date by Microsoft team members and community contributors. If the version is out of date, please [create an issue or pull request](https://github.com/Microsoft/vcpkg) on the vcpkg repository.
144
+
145
+
131
146
#### Using SQLiteCpp on a system-wide installation
132
147
133
148
If you installed this package to your system, a `SQLiteCppConfig.cmake` file will be generated & installed to your system.
0 commit comments