mirror of
https://github.com/lucaspalomodevelop/meshlab.git
synced 2026-03-13 00:07:24 +00:00
83 lines
2.1 KiB
Bash
83 lines
2.1 KiB
Bash
#!/bin/bash
|
|
# this is a script shell for compiling meshlab in a windows environment.
|
|
# Requires a VS >= 2017 and Qt environments which are set-up properly,
|
|
# and an accessible cmake binary.
|
|
#
|
|
# Without given arguments, MeshLab will be built in the meshlab/build
|
|
# directory, and installed in meshlab/install.
|
|
#
|
|
# You can give as argument the BUILD_PATH and the INSTALL_PATH in the
|
|
# following way:
|
|
# bash 1_build.sh --build_path=/path/to/build --install_path=/path/to/install
|
|
# -b and -i arguments are also supported.
|
|
|
|
#default paths wrt the script folder
|
|
SCRIPTS_PATH="$(dirname "$(realpath "$0")")"
|
|
SOURCE_PATH=$SCRIPTS_PATH/../..
|
|
BUILD_PATH=$SOURCE_PATH/build
|
|
INSTALL_PATH=$SOURCE_PATH/install
|
|
DOUBLE_PRECISION_OPTION=""
|
|
NIGHTLY_OPTION=""
|
|
QT_DIR=""
|
|
CCACHE=""
|
|
|
|
#check parameters
|
|
for i in "$@"
|
|
do
|
|
case $i in
|
|
-b=*|--build_path=*)
|
|
BUILD_PATH="${i#*=}"
|
|
shift # past argument=value
|
|
;;
|
|
-i=*|--install_path=*)
|
|
INSTALL_PATH="${i#*=}"
|
|
shift # past argument=value
|
|
;;
|
|
-d|--double_precision)
|
|
DOUBLE_PRECISION_OPTION="-DMESHLAB_BUILD_WITH_DOUBLE_SCALAR=ON"
|
|
shift # past argument=value
|
|
;;
|
|
-n|--nightly)
|
|
NIGHTLY_OPTION="-DMESHLAB_IS_NIGHTLY_VERSION=ON"
|
|
shift # past argument=value
|
|
;;
|
|
-qt=*|--qt_dir=*)
|
|
QT_DIR=${i#*=}
|
|
shift # past argument=value
|
|
;;
|
|
--ccache)
|
|
CCACHE="-DCMAKE_C_COMPILER_LAUNCHER=ccache -DCMAKE_CXX_COMPILER_LAUNCHER=ccache"
|
|
shift # past argument=value
|
|
;;
|
|
*)
|
|
# unknown option
|
|
;;
|
|
esac
|
|
done
|
|
|
|
#create build path if necessary
|
|
if ! [ -d $BUILD_PATH ]
|
|
then
|
|
mkdir -p $BUILD_PATH
|
|
fi
|
|
|
|
#create install path if necessary
|
|
if ! [ -d $INSTALL_PATH ]
|
|
then
|
|
mkdir -p $INSTALL_PATH
|
|
fi
|
|
|
|
BUILD_PATH=$(realpath $BUILD_PATH)
|
|
INSTALL_PATH=$(realpath $INSTALL_PATH)
|
|
|
|
if [ ! -z "$QT_DIR" ]
|
|
then
|
|
export Qt5_DIR=$QT_DIR
|
|
fi
|
|
|
|
cd $BUILD_PATH
|
|
export NINJA_STATUS="[%p (%f/%t) ] "
|
|
cmake -GNinja -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=$INSTALL_PATH $CCACHE $DOUBLE_PRECISION_OPTION $NIGHTLY_OPTION $SOURCE_PATH
|
|
ninja
|
|
ninja install
|