Skip to content

Commit 2d7e733

Browse files
committed
Improve README
1 parent 1f95ded commit 2d7e733

1 file changed

Lines changed: 26 additions & 0 deletions

File tree

README.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,32 @@ if (statement.execute(transaction))
6666
transaction.commit();
6767
```
6868
69+
## Using with vcpkg
70+
71+
This library is present in [firebird-vcpkg-registry](https://github.com/asfernandes/firebird-vcpkg-registry).
72+
73+
To install, add the registry or overlay to your vcpkg configuration and install the `fb-cpp` package:
74+
```bash
75+
vcpkg install fb-cpp
76+
```
77+
78+
Or add it to your `vcpkg.json` manifest:
79+
```json
80+
{
81+
...
82+
"dependencies": [
83+
{
84+
"name": "fb-cpp",
85+
"default-features": true
86+
}
87+
]
88+
}
89+
```
90+
91+
The default features are:
92+
- `boost-dll`: Enable Boost.DLL support for runtime dynamic loading of Firebird client library
93+
- `boost-multiprecision`: Enable Boost.Multiprecision support for INT128 and DECFLOAT types
94+
6995
## Building
7096

7197
This project uses CMake with vcpkg for dependency management.

0 commit comments

Comments
 (0)