File tree Expand file tree Collapse file tree 1 file changed +15
-1
lines changed Expand file tree Collapse file tree 1 file changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -50,6 +50,7 @@ rm bcrypt -Rf
50
50
51
51
git clone https://github.com/nlohmann/json.git json
52
52
cd json
53
+ git checkout tags/v3.11.3
53
54
mkdir build
54
55
cd build
55
56
cmake .. -DJSON_BuildTests=OFF
@@ -61,11 +62,24 @@ rm json -Rf
61
62
62
63
git clone https://github.com/pantor/inja inja
63
64
cd inja
65
+ git checkout tags/v3.4.0
64
66
mkdir build
65
67
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
67
69
make
68
70
make install
69
71
ldconfig
70
72
cd ../..
71
73
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
You can’t perform that action at this time.
0 commit comments