File: build-example.sh

package info (click to toggle)
ponyprog 3.1.4%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 11,904 kB
  • sloc: cpp: 35,932; python: 981; sh: 565; xml: 67; makefile: 45; ansic: 38
file content (10 lines) | stat: -rwxr-xr-x 117 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
if [ ! -d build ];then
    mkdir build
else
    rm -rf build/*
fi

cd build
qmake ../example/qhexedit.pro
make
cd ..