File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -66,6 +66,32 @@ if (statement.execute(transaction))
6666transaction.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
7197This project uses CMake with vcpkg for dependency management.
You can’t perform that action at this time.
0 commit comments