File: configure

package info (click to toggle)
cutecom 0.14.1-2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, lenny
  • size: 184 kB
  • ctags: 54
  • sloc: cpp: 973; makefile: 50; sh: 30
file content (17 lines) | stat: -rwxr-xr-x 289 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/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