From 838a4c57de24cd473218af82c32ca799d0cfd53f Mon Sep 17 00:00:00 2001 From: LucasZF Date: Tue, 15 Feb 2022 15:41:21 -0300 Subject: [PATCH] Update CONTRIBUTING.md I noticed that `dotnet build` throws an error if CMake or a C++ compiler isn't installed since they are required to configure sentry-native. So I added the mention of CMake and the C++ compiler (Could specify that it needs to be compatible with C++14). #skip-changelog. --- CONTRIBUTING.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 2a7aa4df2..106a374a3 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -40,6 +40,13 @@ You'll need the following modules to be added in order to use Sentry Unity: * macOS zsh: `export ANDROID_SDK_ROOT="$HOME/Library/Android/sdk"` * Windows: `setx ANDROID_HOME "C:\Program Files (x86)\Android\android-sdk"` for a machine wide install, `setx ANDROID_HOME "%localappdata%\Android\Sdk"` for a user level install. +### Setup for building Sentry Native + +Sentry Native is a sub module from Sentry Unity and for building it, currently requires the following tools: + +* Install [CMake](https://cmake.org/download/). +* A supported C/C++ compiler. + ## Build the project On the root of the repository, write: