Skip to content
Snippets Groups Projects
Commit dd4c4508 authored by Gerardo Tauriello's avatar Gerardo Tauriello
Browse files

Removed ancient QMEAN dependency from conf-scripts (untested).

parent 8fd7495c
No related branches found
No related tags found
No related merge requests found
......@@ -7,23 +7,20 @@
function usage
{
echo 'usage:'
echo ' fedora-19-conf <OST_ROOT> <QMEAN_ROOT> [OPTIONS]'
echo ' fedora-19-conf <OST_ROOT> [OPTIONS]'
echo ' OST_ROOT is the staging directory of OST.'
echo ' QMEAN_ROOT is the staging directory of QMEAN.'
echo ' Valid options are anything that CMake accepts.'
exit
}
NUM_PARAMS=$#
if [[ "$NUM_PARAMS" -lt "2" ]] ; then
echo 'You must specify the locations of OST and QMEAN (in that order).';
if [[ "$NUM_PARAMS" -lt "1" ]] ; then
echo 'You must specify the locations of OST.';
usage
fi
OST_ROOT=$(cd $1; pwd)
shift
QMEAN_ROOT=$(cd $1; pwd)
shift
PROMOD3_SRC=$(cd `dirname $0`; pwd)
# Going up one level is intentionally, please go out of source. Just create a
# directory at your repository root, prefixed 'build'. Change into it and call
......@@ -31,7 +28,6 @@ PROMOD3_SRC=$(cd `dirname $0`; pwd)
PROMOD3_SRC=${PROMOD3_SRC}/..
cmake $PROMOD3_SRC -DOST_ROOT=$OST_ROOT \
-DQMEAN_ROOT=$QMEAN_ROOT \
-DPYTHON_ROOT=/usr \
$@
......
......@@ -9,23 +9,20 @@
function usage
{
echo 'usage:'
echo ' osx-11.4.2-conf <OST_ROOT> <QMEAN_ROOT> [OPTIONS]'
echo ' osx-11.4.2-conf <OST_ROOT> [OPTIONS]'
echo ' OST_ROOT is the staging directory of OST.'
echo ' QMEAN_ROOT is the staging directory of QMEAN.'
echo ' Valid options are anything that CMake accepts.'
exit
}
NUM_PARAMS=$#
if [[ "$NUM_PARAMS" -lt "2" ]] ; then
echo 'You must specify the location of OST and QMEAN (in that order).';
if [[ "$NUM_PARAMS" -lt "1" ]] ; then
echo 'You must specify the locations of OST.';
usage
fi
OST_ROOT=$(cd $1; pwd)
shift
QMEAN_ROOT=$(cd $1; pwd)
shift
PROMOD3_SRC=$(cd `dirname $0`; pwd)
# Going up one level is intentionally, please go out of source. Just create a
# directory at your repository root, prefixed 'build'. Change into it and call
......@@ -33,7 +30,6 @@ PROMOD3_SRC=$(cd `dirname $0`; pwd)
PROMOD3_SRC=${PROMOD3_SRC}/..
cmake $PROMOD3_SRC -DOST_ROOT=$OST_ROOT \
-DQMEAN_ROOT=$QMEAN_ROOT \
-DPYTHON_ROOT=/opt/local \
-DBOOST_ROOT=/opt/local \
-DPYTHON_INCLUDE_PATH=/opt/local/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7/ \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment