General options;
-h, --help display this help and exit
+ --build-dir-prefix prefix build directory with given prefix
--best turn on dependences known to give best performance
--gpl permit GPL dependences, if available
#--------------------------------------------------------------------------#
builddir=default
+prefix=""
#--------------------------------------------------------------------------#
--best) best=ON;;
--no-best) best=OFF;;
+ --build-dir-prefix)
+ shift
+ if [ $# -eq 0 ]
+ then
+ die "missing argument to --build-dir-prefix"
+ fi
+ prefix=$1
+ ;;
+
--cadical) cadical=ON;;
--no-cadical) cadical=OFF;;
shift
done
+builddir="$prefix$builddir"
+
#--------------------------------------------------------------------------#
cmake_opts=""