Skip to content

Commit d43d92f

Browse files
committed
Sentry added.
1 parent 01e52db commit d43d92f

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

scripts/install_build_dependencies.bash

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ rm bcrypt -Rf
5050

5151
git clone https://github.com/nlohmann/json.git json
5252
cd json
53+
git checkout tags/v3.11.3
5354
mkdir build
5455
cd build
5556
cmake .. -DJSON_BuildTests=OFF
@@ -61,11 +62,24 @@ rm json -Rf
6162

6263
git clone https://github.com/pantor/inja inja
6364
cd inja
65+
git checkout tags/v3.4.0
6466
mkdir build
6567
cd build
66-
cmake .. -DBUILD_TESTING=OFF -DINJA_EXPORT=OFF
68+
cmake .. -DBUILD_TESTING=OFF -DINJA_EXPORT=OFF -DINJA_BUILD_TESTS=OFF -DBUILD_BENCHMARK=OFF
6769
make
6870
make install
6971
ldconfig
7072
cd ../..
7173
rm inja -Rf
74+
75+
76+
git clone https://github.com/getsentry/sentry-native sentry
77+
cd sentry
78+
git checkout tags/0.7.20
79+
git submodule update --init --recursive
80+
cmake -B build -DCMAKE_BUILD_TYPE=RelWithDebInfo
81+
cmake --build build --parallel
82+
cmake --install build --config RelWithDebInfo
83+
ldconfig
84+
cd ..
85+
rm sentry -Rf

0 commit comments

Comments
 (0)