Skip to content
Snippets Groups Projects
Commit 21e2ac48 authored by Dilawar Singh's avatar Dilawar Singh
Browse files

Removed duplicate script.

parent 943231d0
No related branches found
No related tags found
No related merge requests found
#!/bin/bash
set -x
set -e
# NOTICE: This file is parsed by cmake to create a shell script. Not all syntax
# will play well with cmake.
#
# CMAKE replaces @FOO@ and ${FOO} with cmake variable
# values.
if [ -z "$MAKE" ]; then
MAKE=make
fi
CMAKE_PYMOOSE_ARGS=''
SITE_PACKAGE=`@PYTHON_EXECUTABLE@ -c \
"from distutils.sysconfig import get_python_lib; print(get_python_lib())"`
echo $SITE_PACKAGE
# If we are on DEBIAN/UBUNTU, pass --install-layout=deb to moose-core.
echo "Building MOOSE"
(
export GSL_ROOT_DIR=@GSL_ROOT_DIR@
export HDF5_ROOT=@HDF5_ROOT@
cd @PYMOOSE_BUILD_DIR@
cmake -DCMAKE_INSTALL_PREFIX=@PYMOOSE_INSTALL_DIR@ \
-DCMAKE_BUILD_TYPE=Release \
-DPYTHON_EXECUTABLE=@PYTHON_EXECUTABLE@ \
@CMAKE_PYMOOSE_ARGS@ \
@PYMOOSE_SOURCE_DIR@
$MAKE
ctest -output-on-failure || echo "Some tests failed"
$MAKE install
)
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment