File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4,6 +4,14 @@ A Software Development Kit (SDK) for the ECFMP Flow Control API
44
55## Integrating With The SDK
66
7+ ### CMake
8+
9+ You can integrate this SDK into your EuroScope plugin by adding its subdirectory in CMake, for example:
10+
11+ ``` cmake
12+ add_subdirectory(third_party/ecfmp/src)
13+ ```
14+
715### Create a HTTP Client
816
917Rather than ship with an opinionated viewpoint as to what you should use for HTTP requests, this SDK
@@ -53,6 +61,10 @@ auto eventListener = std::make_shared<MyListener<ECFMP::Plugin::FlowMeasureActiv
5361ecfmp.EventBus().Subscribe<ECFMP::Plugin::FlowMeasureActivatedEvent>(eventListener);
5462```
5563
64+ ### Disposing
65+
66+ You can dispose of the SDK by calling ` Dispose() ` on the SDK instance.
67+
5668## Testing Your Integration
5769
5870You can test your integration by making use of the mocks provided by the SDK. These mocks will allow you to simulate
You can’t perform that action at this time.
0 commit comments