Commit ddab0e12 authored by Christoffer Ackelman's avatar Christoffer Ackelman

Added switch to build.sh to choose GUI library.

parent 0d8567c3
......@@ -75,7 +75,11 @@ fi
btype="dbg"
ename=$ver$hw
desc=$verl
gui="qt"
if [ ! -z $1 ]; then
gui="$1"
else
gui="qt"
fi
if [ $gui == "qt" ]; then
export pwre_conf_qt=1
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment