Guest User

Untitled

a guest
Feb 17th, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. mkdir build-release
  4. cd build-release
  5. cmake -DCMAKE_BUILD_TYPE=release ..
  6. cd ..
  7.  
  8. mkdir build-asan
  9. cd build-asan
  10. cmake -DCMAKE_BUILD_TYPE=ASAN ..
  11. cd ..
  12.  
  13. mkdir build-tsan
  14. cd build-tsan
  15. cmake -DCMAKE_BUILD_TYPE=TSAN ..
  16. cd ..
Add Comment
Please, Sign In to add comment