You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 30, 2022. It is now read-only.
I am facing the same issue but your workaround did not do it for me.
The problem is that thirft also does not have a cmake config file for v0.12 but and more recent versions removed the stdcxx.h header used by jaeger_types.h
Is boost even necessary? I can't see any use of the boost namespace or headers in the source code and it's only in the jaegertracingConfig.cmake.
I'm also not sure why this fails for me as well given I have boost on my system. Though looking at the cmake logs Hunter decided to download boost during the make install... It would be nice if Hunter could be opt-out (as an aside)
I found the same problem with Boost and it seems that it is not necessary at all (from my open case #156 ). And I'm also affects the Thrift problem mentioned by @weinrea, so I have opened a new case: #195
Requirement - what kind of business use case are you trying to solve?
Adding jaeger-client-cpp to CMakeFile.txt as a dependency.
Problem - what in Jaeger blocks you from solving the requirement?
There is a problem configuring a project that depends on jaeger-client-cpp. When using
find_package(jaegertracing CONFIG REQUIRED)
the process fails.Proposal - what do you suggest to solve the problem or improve the existing situation?
Standard FindBoost does not support CONFIG flag. This patch solves the problem:
There is a drawback. If a project also requires Boost, its
find_package(Boost
must come last.For example:
works.
While
fails.
The text was updated successfully, but these errors were encountered: