build.sh 58 B

123456
  1. #!/bin/bash
  2. mkdir -p build
  3. cd build
  4. cmake ..
  5. make -j
  6. cd ..