installCppUTestDependency.sh 261 B

12345678910111213141516
  1. #!/bin/sh
  2. echo 'Setting up the CppUTest script...'
  3. # Exit with nonzero exit code if anything fails
  4. set -e
  5. mkdir dependencies
  6. cd dependencies
  7. git clone https://github.com/cpputest/cpputest.git
  8. cd cpputest
  9. git checkout v3.8
  10. cmake CMakeLists.txt
  11. make
  12. cd ../..