unicorn/install-cmocka-linux.sh

13 lines
394 B
Bash
Raw Normal View History

2016-11-14 22:47:27 +00:00
#!/bin/sh
set -ex
mkdir cmocka
wget https://cmocka.org/files/1.1/cmocka-1.1.0.tar.xz -O /tmp/cmocka-1.1.0.tar.xz
tar -xvf /tmp/cmocka-1.1.0.tar.xz -C /tmp
cd cmocka && cmake /tmp/cmocka-1.1.0 && make
2016-11-14 22:47:27 +00:00
# cmake builds an so instead of a dll in mingw/msys
if [[ ! -z $MSYSTEM ]]; then
cp src/cmocka.so src/cmocka.dll
fi
2016-11-14 22:47:27 +00:00
# cmocka does not include headers in build
cp -R /tmp/cmocka-1.1.0/include/ .