#!/bin/bash
# Edit path to where Trilinos is installed, if not a standard system prefix
#  (CMAKE_INSTALL_PREFIX in Trilinos configure)
#
# The ".."  at the end is the relative path from the current build dir
# to the top level CMakeLists.txt file. This needs to be changed if the
# build dir is not a subdir of the main project.

rm CMakeCache.txt

cmake \
 -D Trilinos_PREFIX:PATH=/home/turing/InstalledTrilinos10_6 \
 -D CMAKE_VERBOSE_MAKEFILE:BOOL=ON \
 ..


#  Other Cmake options can be added:
#
# -D CMAKE_CXX_FLAGS:STRING="-DENABLE_HACKS" \

