Advertisement
Guest User

qtemu-haiku

a guest
Jan 12th, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.27 KB | None | 0 0
  1. #!/bin/bash
  2. echo "Getting source from github"
  3. git clone --recursive https://gitlab.com/carlavilla/Qtemu/
  4.  
  5. echo "Setting up build directory"
  6. mkdir build
  7.  
  8. echo "Moving to build directory"
  9. cd build
  10.  
  11. echo "Running qmake"
  12. qmake ..
  13.  
  14. echo "Building binaries"
  15. make
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement