Newer
Older
Import / research / video-compression / strips / decompress / build.sh
@John John on 29 Dec 2020 282 bytes bulk import from macbookpro checkouts
#!/bin/bash

if [ x"$1" == x"clean" ]
then
  make clean
  rm -rf decompress.app build Makefile .DS_Store blah.out output0.png
else

  if [ `uname` == "Darwin" ]
  then
    cp ../blah.out ./
    qmake -spec macx-g++
    make
    ./decompress.app/Contents/MacOS/decompress
  fi

fi