mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
14 lines
343 B
Bash
Executable File
14 lines
343 B
Bash
Executable File
#!/usr/bin/env sh
|
|
set -e
|
|
|
|
TEMPDIR="src"
|
|
cd /
|
|
mkdir -p $TEMPDIR
|
|
(
|
|
cd $TEMPDIR
|
|
git clone --depth 1 https://github.com/google/libprotobuf-mutator.git
|
|
mkdir -p LPM
|
|
cd LPM
|
|
cmake ../libprotobuf-mutator -GNinja -DLIB_PROTO_MUTATOR_DOWNLOAD_PROTOBUF=ON -DLIB_PROTO_MUTATOR_TESTING=OFF -DCMAKE_BUILD_TYPE=Release && ninja install
|
|
)
|