summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Sommerseth <dazo@users.sourceforge.net>2009-12-11 00:12:29 +0100
committerDavid Sommerseth <dazo@users.sourceforge.net>2010-07-12 09:56:54 +0200
commite3108ea7cfb4b68a63de8f5a1310ea430be9a65d (patch)
tree0c46497c11ff9c58798beae347a3fe5678459266
parentbdd956adcccd91ff553278fd73cea738cb8286c4 (diff)
downloadeurephia-e3108ea7cfb4b68a63de8f5a1310ea430be9a65d.tar.gz
eurephia-e3108ea7cfb4b68a63de8f5a1310ea430be9a65d.tar.xz
eurephia-e3108ea7cfb4b68a63de8f5a1310ea430be9a65d.zip
Show which cmake version is being used before starting the configuration
-rwxr-xr-xconfigure4
1 files changed, 3 insertions, 1 deletions
diff --git a/configure b/configure
index f7d1aca..efa5be1 100755
--- a/configure
+++ b/configure
@@ -209,7 +209,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
@@ -243,6 +243,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} \