This repository was archived by the owner on Jan 26, 2024. It is now read-only.

Description
More than an issue an announcement :)
I have added OpenTracing to vcpkg (C++ Library Manager) repository via this merged PR: microsoft/vcpkg#5974
It works in Windows and Linux (probably in macOS but vcpkg doesn't run in macOS yet).
During the porting I have found two problems:
- no UWP support (not important)
- cannot build the static version without the dynamic one (so vcpkg builds either the dynamic version or the static AND dynamic version)
Install the package with:
vcpkg install opentracing
Then use it in cmake (dynamic version):
find_package(OpenTracing CONFIG REQUIRED)
target_link_libraries(main PRIVATE OpenTracing::opentracing)
or (static version):
find_package(OpenTracing CONFIG REQUIRED)
target_link_libraries(main PRIVATE OpenTracing::opentracing-static)