initial import

This commit is contained in:
Dave Goodwin 2003-12-22 14:41:25 +00:00
parent aa607d8832
commit e1d025e34f
3 changed files with 3811 additions and 1481 deletions

5282
config/configure vendored

File diff suppressed because it is too large Load diff

View file

@ -332,7 +332,7 @@ if test -z "$PYTHON_CMD"; then
AC_PATH_PROGS(PYTHON_CMD, python2 python, "none")
fi
if test "$PYTHON_CMD" != "none"; then
if test "$OS_IS_WIN" = "1"; then
if test "x$OS_IS_WIN" = "x1"; then
PYTHON_CMD=`cygpath -a -w "$PYTHON_CMD" | sed 's/\\\/\\//g'`
fi
if test "$BUILD_PYTHON_INTERFACE" != "n"; then
@ -360,7 +360,7 @@ if test "$BUILD_MATLAB_TOOLBOX" != "n"; then
if test "$MATLAB_CMD" != "none"; then BUILD_MATLAB=1; BUILD_CLIB=1; fi
fi
fi
if test "$OS_IS_WIN" = "1"; then
if test "x$OS_IS_WIN" = "x1"; then
MATLAB_CMD=`cygpath -a -w "$MATLAB_CMD" | sed 's/\\\/\\//g'`
echo "Windows MATLAB command: ${MATLAB_CMD}"
fi
@ -527,7 +527,7 @@ AC_OUTPUT(../Cantera/Makefile \
cp -f ../config.h ../Cantera/src
echo
if test "x${OS_IS_WIN}" = 0; then
if test "x${OS_IS_WIN}" = "x0"; then
echo "Now type '${MAKE}' to build Cantera"
else
echo "Now start Visual Studio, open workspace 'win32/cantera.dsw',"

4
config/testpch.h Normal file
View file

@ -0,0 +1,4 @@
// dummy header file used to test whether the compiler can precompile headers
#ifndef TESTPCH_H
#define TESTPCH_H
#endif