Choose an integration approach for fibre-cpp
masterThere are two ways to integrate Fibre into your project depending on your target platform:
Embedding fibre-cpp (Recommended for embedded systems): Include the
fibre-cppsource code directly in your application's build process. This allows you to use the C++ API to interact with Fibre.Linking to libfibre (Recommended for desktop systems): Link against a precompiled
libfibrelibrary and use the C API. This approach is easier for desktop environments as it avoids managing build dependencies.
Note: When linking to libfibre, only the client role is currently supported (you can discover and access remote objects, but cannot expose local objects).