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.

13 lines
140B

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