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.

15 lines
151B

  1. #!/bin/bash
  2. set -ex
  3. if [[ "${CXX}" == clang* ]]; then
  4. export CXXFLAGS="-stdlib=libc++"
  5. fi
  6. mkdir build && cd build
  7. cmake ..
  8. make
  9. make unittest