summaryrefslogtreecommitdiffstats
path: root/win/tools/.check_kde_env
blob: d22cf13e61d5130d73ae715f090f386f1c1f69eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/bash

# checks current environment

if [ -z "$KDEWIN" ] ; then 
	echo `basename $0`": \$KDEWIN environment variable is not set. Set it to absolute path of kdelibs/win32 source code, e.g. C:\\kdelibs"
	exit 1
fi

if [ -z "$KDEDIR" ] ; then 
	echo `basename $0`": \$KDEDIR environment variable is not set. Set it to absolute path of kdelibs/win32 binaries, e.g. C:\\kde"
	exit 1
fi

if [ -z "$KDELIBS" -o "$KDEWIN\\kdelibs" != "$KDELIBS" ] ; then 
	echo `basename $0`": \$KDELIBS = \"$KDELIBS\" but \$KDEWIN = \"$KDEWIN\""
	echo "\$KDELIBS environment variable is not properly set. Set it to absolute path of kdelibs/win32 source code. It needs to be equal to \"\$KDEWIN\\kdelibs\", e.g. C:\\kdewin32\\kdelibs".
	echo "You may need to run:"
	echo " source kde_env"
	exit 1
fi