summaryrefslogtreecommitdiff
path: root/qhexedit2/build-example.sh
blob: 6779e58015fd6175fea3b1cdad889232cdb6ec13 (plain)
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 ..