File: build-example.sh

package info (click to toggle)
ponyprog 3.1.2%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 4,420 kB
  • sloc: cpp: 35,325; python: 981; sh: 565; makefile: 41; ansic: 38
file content (10 lines) | stat: -rwxr-xr-x 117 bytes parent folder | download | duplicates (4)
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 ..