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
Steps to reproduce
Install steps,
mkdir build && cd build
cmake .. -DBUILD_SHARED_LIBS=ON -DWITH_JAEGER=ON
cmake --build . --target all
ctest
cmake --install . --config Release --prefix ../.
What is the expected behavior?
The include directory should be as per cmake OPENTELEMETRY_CPP_INCLUDE_DIRS by default, and it should contain all relevant header files.
What is the actual behavior?
If --prefix not given it installs in same folder.
header "opentelemetry/sdk_config.h" is not copied.
Additional context
Usually code compiles fine, until you include a file that depends on sdk_config.h in an header, like
#include "opentelemetry/exporters/memory/in_memory_span_exporter.h"
The text was updated successfully, but these errors were encountered:
Describe your environment
Ubuntu, wsl
Steps to reproduce
Install steps,
mkdir build && cd build
cmake .. -DBUILD_SHARED_LIBS=ON -DWITH_JAEGER=ON
cmake --build . --target all
ctest
cmake --install . --config Release --prefix ../.
What is the expected behavior?
The include directory should be as per cmake OPENTELEMETRY_CPP_INCLUDE_DIRS by default, and it should contain all relevant header files.
What is the actual behavior?
If --prefix not given it installs in same folder.
header "opentelemetry/sdk_config.h" is not copied.
Additional context
Usually code compiles fine, until you include a file that depends on sdk_config.h in an header, like
#include "opentelemetry/exporters/memory/in_memory_span_exporter.h"
The text was updated successfully, but these errors were encountered: