File: configure

package info (click to toggle)
gtk-qt-engine 1%3A0.8-4
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 468 kB
  • ctags: 232
  • sloc: cpp: 2,366; ansic: 1,670; sh: 57; makefile: 56
file content (15 lines) | stat: -rwxr-xr-x 369 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

echo "Warning: The GTK-Qt Theme Engine now uses cmake instead of ./configure."
echo

cmakepath=`which cmake 2>/dev/null`
if [ "$?" -eq "1" ]; then
	echo "cmake was not found on your system."
	echo "Please download cmake from http://www.cmake.org and ensure it is in your \$PATH"
	exit 1
fi

echo "Found cmake in $cmakepath, executing it for you..."

cmake .