9 lines
207 B
Bash
Executable File
9 lines
207 B
Bash
Executable File
#!/bin/bash
|
|
|
|
apt-get install -y g++ make git autoconf libtool
|
|
git clone https://github.com/cpputest/cpputest.git
|
|
cd cpputest
|
|
autoreconf -i
|
|
./configure
|
|
make
|
|
echo "export CPPUTEST=/app/cpputest" >> ~/.bashrc |