From e181b9234a89a93bc4ef2f595c2ce7d7e4805430 Mon Sep 17 00:00:00 2001 From: Azal Khaled <56312360+Akhaled19@users.noreply.github.com> Date: Mon, 18 Dec 2023 01:42:49 -0500 Subject: [PATCH] Update content/en/docs/instrumentation/cpp/getting-started.md Co-authored-by: Severin Neumann --- .../instrumentation/cpp/getting-started.md | 28 ------------------- 1 file changed, 28 deletions(-) diff --git a/content/en/docs/instrumentation/cpp/getting-started.md b/content/en/docs/instrumentation/cpp/getting-started.md index 1de36a7eb749..d229385c9f85 100644 --- a/content/en/docs/instrumentation/cpp/getting-started.md +++ b/content/en/docs/instrumentation/cpp/getting-started.md @@ -75,34 +75,6 @@ To begin, install Oat++ locally using the [source code](https://github.com/oatp make install ``` -oatpp directory structure should look something like this: -```scss - oatpp/ - │ - ├── CMakeLists.txt - ├── src/ - | ├── oatpp/ - | | ├── network/ - | | | └── ... (network library headers and source files) - | | ├── web/ - | | | └── ... (web library headers and source files) - | | └── ... (other oatpp moduels) - | | - | ├── oatpp-test/ - | | - | └── CMakeLists.txt (oatpp root CMake configuration file) - ├── build/ - | ├── Makefile - | ├── src/ - | ├── CMakeFiles/ - | | └── ... (CMake build-related files) - | └── ... (other build-related files) - | - ├── test/ - ├── cmake/ - └── ...(other oatpp subdirectories) - -``` **Next, install and build [OpenTelemetry C++](https://github.com/open-telemetry/opentelemetry-cpp) locally using CMake, following these general steps:**