make.sh 236 B

1234567891011121314151617181920
  1. # create build dir if not exists
  2. if [ ! -d "build" ]; then
  3. mkdir build
  4. cd build
  5. cmake ..
  6. cd ..
  7. fi
  8. # before build
  9. cd pikapython
  10. wine rust-msc-latest-win10.exe
  11. cd ..
  12. # build
  13. cd build
  14. make
  15. cd ..
  16. # run
  17. ./build/pikapython