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
Installation places a shared library and public headers into the appropriate system directories
79
-
(`/usr/local/[...]`), or to a specified installation prefix. Example:
79
+
(`/usr/local/[…]`), or to a specified installation prefix. Example:
80
80
81
81
```shell
82
82
# Install dd-trace-cpp into `.install/` within the source repository.
@@ -108,15 +108,14 @@ Pass `-DDD_TRACE_BUILD_TESTING=1` to `cmake` to include the unit tests in the bu
108
108
109
109
The resulting unit test executable is `test/tests` within the build directory.
110
110
```shell
111
-
cmake -Bbuild -DDD_TRACE_BUILD_TESTING=1 .
111
+
cmake -B build -DDD_TRACE_BUILD_TESTING=1 .
112
112
cmake --build build -j
113
113
./build/test/tests
114
114
```
115
115
116
116
Alternatively, [bin/test](bin/test) is provided for convenience.
117
117
118
-
Code coverage reports are available on [CodeCov](https://app.codecov.io/gh/DataDog/dd-trace-cpp).
119
-
120
118
Contributing
121
119
------------
122
-
See the [contributing guidelines](CONTRIBUTING.md) and the [maintainer docs](doc/maintainers.md) for information on the overall structure of the repository.
120
+
See the [contributing guidelines](CONTRIBUTING.md) and the [maintainer docs](doc/maintainers.md)
121
+
for information on the overall structure of the repository.
0 commit comments