[go: up one dir, main page]

Menu

[r4]: / trunk / cutecom / configure  Maximize  Restore  History

Download this file

18 lines (13 with data), 289 Bytes

#!/bin/sh

print_error()
{
   echo "Could not execute qmake, which comes with the Qt library (www.trolltech.com)"
   echo "So go and install it :-)"
   echo
   exit
}

echo
echo "Executing qmake..."

qmake > /dev/null || print_error

echo "Succeeded, now enter make to build cutecom"
echo