summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorDavid Sommerseth <dazo@users.sourceforge.net>2009-12-11 00:12:29 +0100
committerDavid Sommerseth <dazo@users.sourceforge.net>2009-12-11 00:12:29 +0100
commit5420bfc7341834db20bce6211bf74f57b779263d (patch)
treecb8bdc9ed3babfee000024051262cfe2b6139259 /configure
parent685fb138a82664d5edea475aa298d4d15aae43f9 (diff)
downloadeurephia-5420bfc7341834db20bce6211bf74f57b779263d.tar.gz
eurephia-5420bfc7341834db20bce6211bf74f57b779263d.tar.xz
eurephia-5420bfc7341834db20bce6211bf74f57b779263d.zip
Show which cmake version is being used before starting the configuration
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure4
1 files changed, 3 insertions, 1 deletions
diff --git a/configure b/configure
index 33fbd0b..87d7ffa 100755
--- a/configure
+++ b/configure
@@ -198,7 +198,7 @@ done
# Make sure we have cmake available
if [ -z "$(which cmake)" ]; then
- echo "To build eurephia, you need to install cmake (at least version 2.6)"
+ echo "To build eurephia, you need to install cmake (at least version 2.6.1)"
exit 1;
fi
@@ -232,6 +232,8 @@ rm -f CMakeCache.txt
# ./configure ${CONFIGUREPARAMS}
EOF
+ echo -n "Using "
+ cmake --version
cmake . ${PARAMS} -DPREFIX:STRING=${PREFIX} -DCMAKE_INSTALL_PREFIX:STRING=${PREFIX} \
-DPLUGINDIR:STRING=${PLUGINDIR} -DBINDIR:STRING=${BINDIR} \
-DEUREPHIADM_XSLT_PATH:STRING=${EUREPHIADM_XSLT} -DXSLTROOT:STRING=${XSLTPATH} \