mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
10df071077
* qBreakpad simple implementation * update chatterino.pro for linux * Add breakpad building script for linux
15 lines
286 B
Bash
Executable file
15 lines
286 B
Bash
Executable file
#!/bin/bash
|
|
cd ../lib/qBreakpad
|
|
|
|
echo "Updating qBreakpad's breakpad dependency version"
|
|
cd third_party/breakpad
|
|
git checkout 7b3afa9258e58a57ffbeb395d445811f92616ae9
|
|
cd ../../
|
|
|
|
cd handler
|
|
mkdir build
|
|
cd build
|
|
qmake ..
|
|
echo "Building handler"
|
|
make -j8 && "Successfully built qBreakpad"
|