cantera/platform/posix/setup_cantera.in
Ray Speth 2528df0f75 Reorganized source tree structure
These changes make it unnecessary to copy header files around during
the build process, which tends to confuse IDEs and debuggers. The
headers which comprise Cantera's external C++ interface are now in
the 'include' directory.

All of the samples and demos are now in the 'samples' subdirectory.
2012-02-12 02:27:14 +00:00

47 lines
1,015 B
Bash

#!/bin/sh
if [ -z $LD_LIBRARY_PATH ]; then
LD_LIBRARY_PATH=@ct_libdir@
else
LD_LIBRARY_PATH=@ct_libdir@:$LD_LIBRARY_PATH
fi
export LD_LIBRARY_PATH
PYTHON_CMD=@python_cmd@
export PYTHON_CMD
PATH=@ct_bindir@:$PATH
export PATH
if [ "@python_cmd@" != `which python` ]; then
alias ctpython=@python_cmd@
fi
if [ "@matlab_toolbox@" = "y" ]; then
if [ -z $MATLAB_PATH ]; then
MATLABPATH=@ct_matlab_dir@:@ct_matlab_dir@/1D
else
MATLABPATH=$MATLABPATH:@ct_matlab_dir@:@ct_matlab_dir@/1D
fi
export MATLABPATH
fi
if [ -z $PYTHONPATH ]; then
PYTHONPATH=@python_module_loc@
else
PYTHONPATH=@python_module_loc@:$PYTHONPATH
fi
if [ "@python_array_home@" != "" ]; then
PYTHONPATH=@python_array_home@:$PYTHONPATH
fi
export PYTHONPATH
## Uncomment this if you want to specify the tmp dir location where
## Cantera writes temporary files. The default is:
## (1) getenv("TMP")
## (2) getenv("TEMP")
## (3) "."
# CANTERA_TMPDIR=/fill/in
# export CANTERA_TMPDIR