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