Guest User

Untitled

a guest
May 25th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. # Create a build folder if it doesn't exist
  2. mkdir -p build
  3.  
  4. # Change the current directory to "build"
  5. cd build
  6.  
  7. # Create all the build files needed
  8. cmake -G 'Unix Makefiles' -DCMAKE_BUILD_TYPE=Debug ..
  9.  
  10. # Build
  11. make
Add Comment
Please, Sign In to add comment