From 48bc0c36fa3e2780dfc6b0c78a19255c73640037 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tor=20Arne=20Vestb=C3=B8?= Date: Thu, 8 Apr 2021 16:10:31 +0200 Subject: [PATCH] Fix result of building native SDK with cmake --- src/includes/getting-started-install/native.mdx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/includes/getting-started-install/native.mdx b/src/includes/getting-started-install/native.mdx index c801cbba902b18..1a5fd5cfb3f990 100644 --- a/src/includes/getting-started-install/native.mdx +++ b/src/includes/getting-started-install/native.mdx @@ -12,13 +12,14 @@ cmake --build build --config RelWithDebInfo --parallel # install the resulting artifacts into a specific prefix cmake --install build --prefix install # which will result in the following (on macOS): -exa --tree install +exa --tree install --level 2 install ├── bin │ └── crashpad_handler ├── include │ └── sentry.h └── lib + ├── cmake ├── libsentry.dylib └── libsentry.dylib.dSYM ```