You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
261 B
10 lines
261 B
3 years ago
|
#!/bin/sh
|
||
|
|
||
|
cd cmocka && mkdir build && cd build
|
||
|
if [ "$(uname)" = Darwin ]; then
|
||
|
cmake -DCMAKE_INSTALL_PREFIX=/usr/local .. && make -j2 && sudo make install
|
||
|
else # Linux
|
||
|
cmake -DCMAKE_INSTALL_PREFIX=/usr .. && make -j2 && sudo make install
|
||
|
fi
|
||
|
cd ../.. && make
|