This is an Import of the win32 sourceforge project files
This commit is contained in:
parent
a6a8f6e45b
commit
9fd1f7b41b
290 changed files with 148480 additions and 0 deletions
97
win32/README.vc7
Normal file
97
win32/README.vc7
Normal file
|
|
@ -0,0 +1,97 @@
|
|||
|
||||
Instructions for building under Visual C++ v.7 Without Fortran Support
|
||||
----------------------------------------------------------------------------
|
||||
|
||||
|
||||
1) Checkout the regular Cantera distribution, and cd to the top directory.
|
||||
cvs -d":ext:hkmoffa@cvs.sourceforge.net:/cvsroot/cantera" co Cantera
|
||||
cd Cantera
|
||||
|
||||
|
||||
2) Remove the regular win32 directory and everything under it:
|
||||
/bin/rm -rf win32
|
||||
|
||||
3) Checkout out the new win32 module, from Cantera's sourceforge distribution:
|
||||
cvs -d":ext:hkmoffa@cvs.sourceforge.net:/cvsroot/cantera" co win32
|
||||
|
||||
|
||||
4) Now, there should be a win32 directory located in the distribution's top
|
||||
directory that has a different format than the previous one.
|
||||
|
||||
5) Add support for command line execution of the VC++ compiler
|
||||
a) Add the following lines to your .profile file:
|
||||
#
|
||||
VS_HOME='/cygdrive/c/Program Files/Microsoft Visual Studio .NET 2003'
|
||||
export VS_HOME
|
||||
#
|
||||
PATH=$VS_HOME/Vc7/bin:$VS_HOME/Common7/IDE:$PATH
|
||||
export PATH
|
||||
#
|
||||
|
||||
b) Make sure your windows user environmental variable, INCLUDE, contains
|
||||
the default MSVC++7.0 include directories:
|
||||
|
||||
Right-clicking "My Computer", selecting properties:advanced,
|
||||
and open up Environmental Variables
|
||||
The variable INCLUDE should contain these entries:
|
||||
C:\Program Files\Microsoft Visual Studio .NET 2003\SDK\v1.1\include\;C:\Program Files\Microsoft Visual Studio .NET 2003\Vc7\include\;C:\Program Files\Microsoft Visual Studio .NET 2003\Vc7\PlatformSDK\include\
|
||||
|
||||
|
||||
|
||||
6) Go to config directory and type autoconf. Return to top directory.
|
||||
|
||||
7) Go to win32/vc7 directory.
|
||||
Copy configure.vc++ to the top Cantera's directory, edit it, and execute it
|
||||
(note, it must be a unix text file to execute)
|
||||
|
||||
cd win32/vc7
|
||||
cp configure.vc++ ../..
|
||||
cd ../..
|
||||
vi configure.vc++
|
||||
configure.vc++
|
||||
|
||||
8) Open up a windows explorer window, go to the directory win32/vc7, and double
|
||||
click on Cantera.sln.
|
||||
|
||||
9) Build the solution cantera from within MS VC++ v7.0.
|
||||
|
||||
10) An error exit is generated by python v. 2.3's distutuils module
|
||||
whenever a user module is compiled with MS VC++ v7.0. Note, python was
|
||||
compiled with MS VC++ v6.0. I have found that just disabling the error
|
||||
exit leads to acceptable behavior with no problems.
|
||||
|
||||
To disable the error exit, edit the file:
|
||||
/cygdrive/c/python23/Lib/distutils/msvccompiler.py
|
||||
Comment out lines 211 to 215 by prepending with a "#".
|
||||
|
||||
Note, this module generates compiler command lines for python. During
|
||||
Cantera's python build process, the distutils module actually takes over
|
||||
the build process from Cantera's makefile, and carries out the build/install
|
||||
operations. Therefore, there is no way around this step.
|
||||
|
||||
Note, python 2.4 is in alpha testing as of 9/2004. It's being built with
|
||||
MSVC++ v7.0. I'm not sure if this means similar problems for Cantera users
|
||||
who want to use python 2.4 with MSVC++ v6.0 in the future or not.
|
||||
|
||||
(HKM -> I'll try to find out more information about this whole issue in
|
||||
the near future i.e., is there an upgraded distutils module?)
|
||||
|
||||
11) Go to the top of the Cantera distribution, and type:
|
||||
|
||||
make win
|
||||
|
||||
|
||||
12) Go to win32/vc7 and double click on cantera_examples.sln.
|
||||
Build the cantera_examples from within MS VC++ v7.0.
|
||||
|
||||
13) Go to the top of the Cantera distribution, and type
|
||||
make win-install
|
||||
|
||||
14) To test the installation, go to the top of the Cantera intallation.
|
||||
Go into the test_problems directory and run all of the problems:
|
||||
|
||||
cd test_problems
|
||||
make test
|
||||
|
||||
|
||||
|
||||
97
win32/README.vc8
Normal file
97
win32/README.vc8
Normal file
|
|
@ -0,0 +1,97 @@
|
|||
|
||||
Instructions for building under Visual C++ v.7 Without Fortran Support
|
||||
----------------------------------------------------------------------------
|
||||
|
||||
|
||||
1) Checkout the regular Cantera distribution, and cd to the top directory.
|
||||
cvs -d":ext:hkmoffa@cvs.sourceforge.net:/cvsroot/cantera" co Cantera
|
||||
cd Cantera
|
||||
|
||||
|
||||
2) Remove the regular win32 directory and everything under it:
|
||||
/bin/rm -rf win32
|
||||
|
||||
3) Checkout out the new win32 module, from Cantera's sourceforge distribution:
|
||||
cvs -d":ext:hkmoffa@cvs.sourceforge.net:/cvsroot/cantera" co win32
|
||||
|
||||
|
||||
4) Now, there should be a win32 directory located in the distribution's top
|
||||
directory that has a different format than the previous one.
|
||||
|
||||
5) Add support for command line execution of the VC++ compiler
|
||||
a) Add the following lines to your .profile file:
|
||||
#
|
||||
VS_HOME='/cygdrive/c/Program Files/Microsoft Visual Studio .NET 2003'
|
||||
export VS_HOME
|
||||
#
|
||||
PATH=$VS_HOME/Vc7/bin:$VS_HOME/Common7/IDE:$PATH
|
||||
export PATH
|
||||
#
|
||||
|
||||
b) Make sure your windows user environmental variable, INCLUDE, contains
|
||||
the default MSVC++7.0 include directories:
|
||||
|
||||
Right-clicking "My Computer", selecting properties:advanced,
|
||||
and open up Environmental Variables
|
||||
The variable INCLUDE should contain these entries:
|
||||
C:\Program Files\Microsoft Visual Studio .NET 2003\SDK\v1.1\include\;C:\Program Files\Microsoft Visual Studio .NET 2003\Vc7\include\;C:\Program Files\Microsoft Visual Studio .NET 2003\Vc7\PlatformSDK\include\
|
||||
|
||||
|
||||
|
||||
6) Go to config directory and type autoconf. Return to top directory.
|
||||
|
||||
7) Go to win32/vc7 directory.
|
||||
Copy configure.vc++ to the top Cantera's directory, edit it, and execute it
|
||||
(note, it must be a unix text file to execute)
|
||||
|
||||
cd win32/vc7
|
||||
cp configure.vc++ ../..
|
||||
cd ../..
|
||||
vi configure.vc++
|
||||
configure.vc++
|
||||
|
||||
8) Open up a windows explorer window, go to the directory win32/vc7, and double
|
||||
click on Cantera.sln.
|
||||
|
||||
9) Build the solution cantera from within MS VC++ v7.0.
|
||||
|
||||
10) An error exit is generated by python v. 2.3's distutuils module
|
||||
whenever a user module is compiled with MS VC++ v7.0. Note, python was
|
||||
compiled with MS VC++ v6.0. I have found that just disabling the error
|
||||
exit leads to acceptable behavior with no problems.
|
||||
|
||||
To disable the error exit, edit the file:
|
||||
/cygdrive/c/python23/Lib/distutils/msvccompiler.py
|
||||
Comment out lines 211 to 215 by prepending with a "#".
|
||||
|
||||
Note, this module generates compiler command lines for python. During
|
||||
Cantera's python build process, the distutils module actually takes over
|
||||
the build process from Cantera's makefile, and carries out the build/install
|
||||
operations. Therefore, there is no way around this step.
|
||||
|
||||
Note, python 2.4 is in alpha testing as of 9/2004. It's being built with
|
||||
MSVC++ v7.0. I'm not sure if this means similar problems for Cantera users
|
||||
who want to use python 2.4 with MSVC++ v6.0 in the future or not.
|
||||
|
||||
(HKM -> I'll try to find out more information about this whole issue in
|
||||
the near future i.e., is there an upgraded distutils module?)
|
||||
|
||||
11) Go to the top of the Cantera distribution, and type:
|
||||
|
||||
make win
|
||||
|
||||
|
||||
12) Go to win32/vc7 and double click on cantera_examples.sln.
|
||||
Build the cantera_examples from within MS VC++ v7.0.
|
||||
|
||||
13) Go to the top of the Cantera distribution, and type
|
||||
make win-install
|
||||
|
||||
14) To test the installation, go to the top of the Cantera intallation.
|
||||
Go into the test_problems directory and run all of the problems:
|
||||
|
||||
cd test_problems
|
||||
make test
|
||||
|
||||
|
||||
|
||||
63
win32/vc6/all/all.dsp
Normal file
63
win32/vc6/all/all.dsp
Normal file
|
|
@ -0,0 +1,63 @@
|
|||
# Microsoft Developer Studio Project File - Name="all" - Package Owner=<4>
|
||||
# Microsoft Developer Studio Generated Build File, Format Version 6.00
|
||||
# ** DO NOT EDIT **
|
||||
|
||||
# TARGTYPE "Win32 (x86) Generic Project" 0x010a
|
||||
|
||||
CFG=all - Win32 Debug
|
||||
!MESSAGE This is not a valid makefile. To build this project using NMAKE,
|
||||
!MESSAGE use the Export Makefile command and run
|
||||
!MESSAGE
|
||||
!MESSAGE NMAKE /f "all.mak".
|
||||
!MESSAGE
|
||||
!MESSAGE You can specify a configuration when running NMAKE
|
||||
!MESSAGE by defining the macro CFG on the command line. For example:
|
||||
!MESSAGE
|
||||
!MESSAGE NMAKE /f "all.mak" CFG="all - Win32 Debug"
|
||||
!MESSAGE
|
||||
!MESSAGE Possible choices for configuration are:
|
||||
!MESSAGE
|
||||
!MESSAGE "all - Win32 Release" (based on "Win32 (x86) Generic Project")
|
||||
!MESSAGE "all - Win32 Debug" (based on "Win32 (x86) Generic Project")
|
||||
!MESSAGE
|
||||
|
||||
# Begin Project
|
||||
# PROP AllowPerConfigDependencies 0
|
||||
# PROP Scc_ProjName ""
|
||||
# PROP Scc_LocalPath ""
|
||||
MTL=midl.exe
|
||||
|
||||
!IF "$(CFG)" == "all - Win32 Release"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 0
|
||||
# PROP BASE Output_Dir "Release"
|
||||
# PROP BASE Intermediate_Dir "Release"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 0
|
||||
# PROP Output_Dir "Release"
|
||||
# PROP Intermediate_Dir "Release"
|
||||
# PROP Target_Dir ""
|
||||
|
||||
!ELSEIF "$(CFG)" == "all - Win32 Debug"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 1
|
||||
# PROP BASE Output_Dir "Debug"
|
||||
# PROP BASE Intermediate_Dir "Debug"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 1
|
||||
# PROP Output_Dir "Debug"
|
||||
# PROP Intermediate_Dir "Debug"
|
||||
# PROP Target_Dir ""
|
||||
|
||||
!ENDIF
|
||||
|
||||
# Begin Target
|
||||
|
||||
# Name "all - Win32 Release"
|
||||
# Name "all - Win32 Debug"
|
||||
# End Target
|
||||
# End Project
|
||||
265
win32/vc6/blas/blas.dsp
Executable file
265
win32/vc6/blas/blas.dsp
Executable file
|
|
@ -0,0 +1,265 @@
|
|||
# Microsoft Developer Studio Project File - Name="blas" - Package Owner=<4>
|
||||
# Microsoft Developer Studio Generated Build File, Format Version 6.00
|
||||
# ** DO NOT EDIT **
|
||||
|
||||
# TARGTYPE "Win32 (x86) Static Library" 0x0104
|
||||
|
||||
CFG=blas - Win32 Debug
|
||||
!MESSAGE This is not a valid makefile. To build this project using NMAKE,
|
||||
!MESSAGE use the Export Makefile command and run
|
||||
!MESSAGE
|
||||
!MESSAGE NMAKE /f "blas.mak".
|
||||
!MESSAGE
|
||||
!MESSAGE You can specify a configuration when running NMAKE
|
||||
!MESSAGE by defining the macro CFG on the command line. For example:
|
||||
!MESSAGE
|
||||
!MESSAGE NMAKE /f "blas.mak" CFG="blas - Win32 Debug"
|
||||
!MESSAGE
|
||||
!MESSAGE Possible choices for configuration are:
|
||||
!MESSAGE
|
||||
!MESSAGE "blas - Win32 Release" (based on "Win32 (x86) Static Library")
|
||||
!MESSAGE "blas - Win32 Debug" (based on "Win32 (x86) Static Library")
|
||||
!MESSAGE
|
||||
|
||||
# Begin Project
|
||||
# PROP AllowPerConfigDependencies 0
|
||||
# PROP Scc_ProjName ""
|
||||
# PROP Scc_LocalPath ""
|
||||
CPP=cl.exe
|
||||
F90=df.exe
|
||||
RSC=rc.exe
|
||||
|
||||
!IF "$(CFG)" == "blas - Win32 Release"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 0
|
||||
# PROP BASE Output_Dir "Release"
|
||||
# PROP BASE Intermediate_Dir "Release"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 0
|
||||
# PROP Output_Dir "Release"
|
||||
# PROP Intermediate_Dir "Release"
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE F90 /compile_only /nologo /warn:nofileopt
|
||||
# ADD F90 /assume:underscore /compile_only /iface:nomixed_str_len_arg /iface:cref /libs:dll /math_library:fast /names:lowercase /nologo /threads /warn:nofileopt
|
||||
# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c
|
||||
# ADD CPP /nologo /MD /W3 /GX /O2 /Ob2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c
|
||||
# ADD BASE RSC /l 0x409 /d "NDEBUG"
|
||||
# ADD RSC /l 0x409 /d "NDEBUG"
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LIB32=link.exe -lib
|
||||
# ADD BASE LIB32 /nologo
|
||||
# ADD LIB32 /nologo /out:"..\..\build\lib\i686-pc-win32\ctblas.lib"
|
||||
|
||||
!ELSEIF "$(CFG)" == "blas - Win32 Debug"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 1
|
||||
# PROP BASE Output_Dir "Debug"
|
||||
# PROP BASE Intermediate_Dir "Debug"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 1
|
||||
# PROP Output_Dir "Debug"
|
||||
# PROP Intermediate_Dir "Debug"
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE F90 /check:bounds /compile_only /debug:full /nologo /traceback /warn:argument_checking /warn:nofileopt
|
||||
# ADD F90 /assume:underscore /check:bounds /compile_only /dbglibs /debug:full /iface:nomixed_str_len_arg /iface:cref /libs:dll /names:lowercase /nologo /threads /traceback /warn:argument_checking /warn:nofileopt
|
||||
# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c
|
||||
# ADD CPP /nologo /MD /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c
|
||||
# ADD BASE RSC /l 0x409 /d "_DEBUG"
|
||||
# ADD RSC /l 0x409 /d "_DEBUG"
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LIB32=link.exe -lib
|
||||
# ADD BASE LIB32 /nologo
|
||||
# ADD LIB32 /nologo /out:"..\..\build\lib\i686-pc-win32\ctblas_d.lib"
|
||||
|
||||
!ENDIF
|
||||
|
||||
# Begin Target
|
||||
|
||||
# Name "blas - Win32 Release"
|
||||
# Name "blas - Win32 Debug"
|
||||
# Begin Group "Source Files"
|
||||
|
||||
# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat;f90;for;f;fpp"
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\blas\dasum.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\blas\daxpy.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\blas\dcabs1.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\blas\dcopy.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\blas\ddot.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\blas\dgbmv.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\blas\dgemm.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\blas\dgemv.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\blas\dger.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\blas\dnrm2.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\blas\drot.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\blas\drotg.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\blas\drotm.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\blas\drotmg.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\blas\dsbmv.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\blas\dscal.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\blas\dsdot.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\blas\dspmv.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\blas\dspr.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\blas\dspr2.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\blas\dswap.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\blas\dsymm.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\blas\dsymv.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\blas\dsyr.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\blas\dsyr2.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\blas\dsyr2k.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\blas\dsyrk.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\blas\dtbmv.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\blas\dtbsv.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\blas\dtpmv.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\blas\dtpsv.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\blas\dtrmm.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\blas\dtrmv.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\blas\dtrsm.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\blas\dtrsv.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\blas\dzasum.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\blas\dznrm2.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\blas\icamax.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\blas\idamax.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\blas\isamax.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\blas\izamax.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\blas\xerbla.f
|
||||
# End Source File
|
||||
# End Group
|
||||
# Begin Group "Header Files"
|
||||
|
||||
# PROP Default_Filter "h;hpp;hxx;hm;inl;fi;fd"
|
||||
# End Group
|
||||
# End Target
|
||||
# End Project
|
||||
254
win32/vc6/cantera.dsw
Executable file
254
win32/vc6/cantera.dsw
Executable file
|
|
@ -0,0 +1,254 @@
|
|||
Microsoft Developer Studio Workspace File, Format Version 6.00
|
||||
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
|
||||
|
||||
###############################################################################
|
||||
|
||||
Project: "all"=.\all\all.dsp - Package Owner=<4>
|
||||
|
||||
Package=<5>
|
||||
{{{
|
||||
}}}
|
||||
|
||||
Package=<4>
|
||||
{{{
|
||||
Begin Project Dependency
|
||||
Project_Dep_Name blas
|
||||
End Project Dependency
|
||||
Begin Project Dependency
|
||||
Project_Dep_Name cantera
|
||||
End Project Dependency
|
||||
Begin Project Dependency
|
||||
Project_Dep_Name clib
|
||||
End Project Dependency
|
||||
Begin Project Dependency
|
||||
Project_Dep_Name ctmath
|
||||
End Project Dependency
|
||||
Begin Project Dependency
|
||||
Project_Dep_Name cvode
|
||||
End Project Dependency
|
||||
Begin Project Dependency
|
||||
Project_Dep_Name cxxutils
|
||||
End Project Dependency
|
||||
Begin Project Dependency
|
||||
Project_Dep_Name lapack
|
||||
End Project Dependency
|
||||
Begin Project Dependency
|
||||
Project_Dep_Name oneD
|
||||
End Project Dependency
|
||||
Begin Project Dependency
|
||||
Project_Dep_Name recipes
|
||||
End Project Dependency
|
||||
Begin Project Dependency
|
||||
Project_Dep_Name transport
|
||||
End Project Dependency
|
||||
Begin Project Dependency
|
||||
Project_Dep_Name zeroD
|
||||
End Project Dependency
|
||||
Begin Project Dependency
|
||||
Project_Dep_Name tpx
|
||||
End Project Dependency
|
||||
Begin Project Dependency
|
||||
Project_Dep_Name ck2cti
|
||||
End Project Dependency
|
||||
Begin Project Dependency
|
||||
Project_Dep_Name converters
|
||||
End Project Dependency
|
||||
}}}
|
||||
|
||||
###############################################################################
|
||||
|
||||
Project: "blas"=.\blas\blas.dsp - Package Owner=<4>
|
||||
|
||||
Package=<5>
|
||||
{{{
|
||||
}}}
|
||||
|
||||
Package=<4>
|
||||
{{{
|
||||
}}}
|
||||
|
||||
###############################################################################
|
||||
|
||||
Project: "cantera"=.\cantera\cantera.dsp - Package Owner=<4>
|
||||
|
||||
Package=<5>
|
||||
{{{
|
||||
}}}
|
||||
|
||||
Package=<4>
|
||||
{{{
|
||||
}}}
|
||||
|
||||
###############################################################################
|
||||
|
||||
Project: "ck2cti"=.\ck2cti\ck2cti.dsp - Package Owner=<4>
|
||||
|
||||
Package=<5>
|
||||
{{{
|
||||
}}}
|
||||
|
||||
Package=<4>
|
||||
{{{
|
||||
Begin Project Dependency
|
||||
Project_Dep_Name cantera
|
||||
End Project Dependency
|
||||
Begin Project Dependency
|
||||
Project_Dep_Name converters
|
||||
End Project Dependency
|
||||
Begin Project Dependency
|
||||
Project_Dep_Name cxxutils
|
||||
End Project Dependency
|
||||
Begin Project Dependency
|
||||
Project_Dep_Name tpx
|
||||
End Project Dependency
|
||||
}}}
|
||||
|
||||
###############################################################################
|
||||
|
||||
Project: "clib"=.\clib\clib.dsp - Package Owner=<4>
|
||||
|
||||
Package=<5>
|
||||
{{{
|
||||
}}}
|
||||
|
||||
Package=<4>
|
||||
{{{
|
||||
}}}
|
||||
|
||||
###############################################################################
|
||||
|
||||
Project: "converters"=.\converters\converters.dsp - Package Owner=<4>
|
||||
|
||||
Package=<5>
|
||||
{{{
|
||||
}}}
|
||||
|
||||
Package=<4>
|
||||
{{{
|
||||
}}}
|
||||
|
||||
###############################################################################
|
||||
|
||||
Project: "ctmath"=.\ctmath\ctmath.dsp - Package Owner=<4>
|
||||
|
||||
Package=<5>
|
||||
{{{
|
||||
}}}
|
||||
|
||||
Package=<4>
|
||||
{{{
|
||||
}}}
|
||||
|
||||
###############################################################################
|
||||
|
||||
Project: "cvode"=.\cvode\cvode.dsp - Package Owner=<4>
|
||||
|
||||
Package=<5>
|
||||
{{{
|
||||
}}}
|
||||
|
||||
Package=<4>
|
||||
{{{
|
||||
}}}
|
||||
|
||||
###############################################################################
|
||||
|
||||
Project: "cxxutils"=.\cxxutils\cxxutils.dsp - Package Owner=<4>
|
||||
|
||||
Package=<5>
|
||||
{{{
|
||||
}}}
|
||||
|
||||
Package=<4>
|
||||
{{{
|
||||
}}}
|
||||
|
||||
###############################################################################
|
||||
|
||||
Project: "lapack"=.\lapack\lapack.dsp - Package Owner=<4>
|
||||
|
||||
Package=<5>
|
||||
{{{
|
||||
}}}
|
||||
|
||||
Package=<4>
|
||||
{{{
|
||||
Begin Project Dependency
|
||||
Project_Dep_Name blas
|
||||
End Project Dependency
|
||||
}}}
|
||||
|
||||
###############################################################################
|
||||
|
||||
Project: "oneD"=.\oneD\oneD.dsp - Package Owner=<4>
|
||||
|
||||
Package=<5>
|
||||
{{{
|
||||
}}}
|
||||
|
||||
Package=<4>
|
||||
{{{
|
||||
}}}
|
||||
|
||||
###############################################################################
|
||||
|
||||
Project: "recipes"=.\recipes\recipes.dsp - Package Owner=<4>
|
||||
|
||||
Package=<5>
|
||||
{{{
|
||||
}}}
|
||||
|
||||
Package=<4>
|
||||
{{{
|
||||
}}}
|
||||
|
||||
###############################################################################
|
||||
|
||||
Project: "tpx"=.\tpx\tpx.dsp - Package Owner=<4>
|
||||
|
||||
Package=<5>
|
||||
{{{
|
||||
}}}
|
||||
|
||||
Package=<4>
|
||||
{{{
|
||||
}}}
|
||||
|
||||
###############################################################################
|
||||
|
||||
Project: "transport"=.\transport\transport.dsp - Package Owner=<4>
|
||||
|
||||
Package=<5>
|
||||
{{{
|
||||
}}}
|
||||
|
||||
Package=<4>
|
||||
{{{
|
||||
}}}
|
||||
|
||||
###############################################################################
|
||||
|
||||
Project: "zeroD"=.\zeroD\zeroD.dsp - Package Owner=<4>
|
||||
|
||||
Package=<5>
|
||||
{{{
|
||||
}}}
|
||||
|
||||
Package=<4>
|
||||
{{{
|
||||
}}}
|
||||
|
||||
###############################################################################
|
||||
|
||||
Global:
|
||||
|
||||
Package=<5>
|
||||
{{{
|
||||
}}}
|
||||
|
||||
Package=<3>
|
||||
{{{
|
||||
}}}
|
||||
|
||||
###############################################################################
|
||||
|
||||
673
win32/vc6/cantera/cantera.dsp
Executable file
673
win32/vc6/cantera/cantera.dsp
Executable file
|
|
@ -0,0 +1,673 @@
|
|||
# Microsoft Developer Studio Project File - Name="cantera" - Package Owner=<4>
|
||||
# Microsoft Developer Studio Generated Build File, Format Version 6.00
|
||||
# ** DO NOT EDIT **
|
||||
|
||||
# TARGTYPE "Win32 (x86) Static Library" 0x0104
|
||||
|
||||
CFG=cantera - Win32 Debug
|
||||
!MESSAGE This is not a valid makefile. To build this project using NMAKE,
|
||||
!MESSAGE use the Export Makefile command and run
|
||||
!MESSAGE
|
||||
!MESSAGE NMAKE /f "cantera.mak".
|
||||
!MESSAGE
|
||||
!MESSAGE You can specify a configuration when running NMAKE
|
||||
!MESSAGE by defining the macro CFG on the command line. For example:
|
||||
!MESSAGE
|
||||
!MESSAGE NMAKE /f "cantera.mak" CFG="cantera - Win32 Debug"
|
||||
!MESSAGE
|
||||
!MESSAGE Possible choices for configuration are:
|
||||
!MESSAGE
|
||||
!MESSAGE "cantera - Win32 Release" (based on "Win32 (x86) Static Library")
|
||||
!MESSAGE "cantera - Win32 Debug" (based on "Win32 (x86) Static Library")
|
||||
!MESSAGE
|
||||
|
||||
# Begin Project
|
||||
# PROP AllowPerConfigDependencies 0
|
||||
# PROP Scc_ProjName ""
|
||||
# PROP Scc_LocalPath ""
|
||||
CPP=cl.exe
|
||||
F90=df.exe
|
||||
RSC=rc.exe
|
||||
|
||||
!IF "$(CFG)" == "cantera - Win32 Release"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 0
|
||||
# PROP BASE Output_Dir "Release"
|
||||
# PROP BASE Intermediate_Dir "Release"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 0
|
||||
# PROP Output_Dir "Release"
|
||||
# PROP Intermediate_Dir "Release"
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE F90 /compile_only /nologo /warn:nofileopt
|
||||
# ADD F90 /assume:underscore /compile_only /iface:nomixed_str_len_arg /iface:cref /libs:dll /math_library:fast /names:lowercase /nologo /threads /warn:nofileopt
|
||||
# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c
|
||||
# ADD CPP /nologo /MD /W3 /GX /O2 /Ob2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /D "USE_MKL" /YX /FD /c
|
||||
# ADD BASE RSC /l 0x409 /d "NDEBUG"
|
||||
# ADD RSC /l 0x409 /d "NDEBUG"
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LIB32=link.exe -lib
|
||||
# ADD BASE LIB32 /nologo
|
||||
# ADD LIB32 /nologo /out:"..\..\build\lib\i686-pc-win32\cantera.lib"
|
||||
|
||||
!ELSEIF "$(CFG)" == "cantera - Win32 Debug"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 1
|
||||
# PROP BASE Output_Dir "Debug"
|
||||
# PROP BASE Intermediate_Dir "Debug"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 1
|
||||
# PROP Output_Dir "Debug"
|
||||
# PROP Intermediate_Dir "Debug"
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE F90 /check:bounds /compile_only /debug:full /nologo /traceback /warn:argument_checking /warn:nofileopt
|
||||
# ADD F90 /assume:underscore /check:bounds /compile_only /dbglibs /debug:full /iface:nomixed_str_len_arg /iface:cref /libs:dll /names:lowercase /nologo /threads /traceback /warn:argument_checking /warn:nofileopt
|
||||
# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c
|
||||
# ADD CPP /nologo /MD /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c
|
||||
# ADD BASE RSC /l 0x409 /d "_DEBUG"
|
||||
# ADD RSC /l 0x409 /d "_DEBUG"
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LIB32=link.exe -lib
|
||||
# ADD BASE LIB32 /nologo
|
||||
# ADD LIB32 /nologo /out:"..\..\build\lib\i686-pc-win32\cantera_d.lib"
|
||||
|
||||
!ENDIF
|
||||
|
||||
# Begin Target
|
||||
|
||||
# Name "cantera - Win32 Release"
|
||||
# Name "cantera - Win32 Debug"
|
||||
# Begin Group "Source Files"
|
||||
|
||||
# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat;f90;for;f;fpp"
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\BandMatrix.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\ChemEquil.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\ConstDensityThermo.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\Constituents.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\ct2ctml.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\ctml.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\ctvector.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\CVode.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\DenseMatrix.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\EdgeKinetics.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\Elements.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\FalloffFactory.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\funcs.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\GasKinetics.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\GasKineticsWriter.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\GRI_30_Kinetics.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\Group.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\IdealGasPhase.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\ImplicitSurfChem.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\importCTML.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\InterfaceKinetics.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\KineticsFactory.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\misc.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\Phase.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\phasereport.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\plots.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\PureFluidPhase.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\ReactionPath.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\ReactionStoichMgr.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\sort.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\SpeciesThermoFactory.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\State.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\StoichSubstance.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\stringUtils.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\SurfPhase.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\ThermoFactory.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\ThermoPhase.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\xml.cpp
|
||||
# End Source File
|
||||
# End Group
|
||||
# Begin Group "Header Files"
|
||||
|
||||
# PROP Default_Filter "h;hpp;hxx;hm;inl;fi;fd"
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\Array.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\BandMatrix.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\ChemEquil.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\ck2ctml.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\config.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\ConstDensityThermo.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\CKReader\src\Constituent.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\Constituents.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\ct_defs.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\ctDebug.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\ctexceptions.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\ctlapack.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\ctml.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\ctvector.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\cvode\include\cvdense.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\cvode\include\cvdiag.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\CVode.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\cvode\include\cvode.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\cvode\include\cvspgmr.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\DASPK.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\cvode\include\dense.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\DenseMatrix.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\EdgeKinetics.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\EdgePhase.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\Elements.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\Enhanced3BConc.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\exceptions.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\Falloff.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\FalloffFactory.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\FalloffMgr.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\FuncEval.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\GasKinetics.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\GasKineticsWriter.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\global.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\GRI_30_Kinetics.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\Group.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\IdealGasPhase.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\ImplicitSurfChem.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\importCK.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\importCTML.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\importXML.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\Integrator.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\InterfaceKinetics.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\cvode\include\iterativ.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\Jac.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\Jac1D.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\Jac2.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\Kinetics.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\KineticsFactory.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\lapack.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\cvode\include\llnlmath.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\cvode\include\llnltyps.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\mix_defs.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\MixFactory.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\MixTransport.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\MMCollisionInt.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\MultiJac.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\MultiResid.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\MultiTransport.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\NasaPoly1.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\NasaThermo.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\Newton.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\Newton1D.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\cvode\include\nvector.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\Phase.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\plots.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\polyfit.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\PropertyCalculator.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\PropertyUpdater.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\pureSubstances.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\RateCoeffMgr.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\reaction_defs.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\ReactionData.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\ReactionMechanism.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\ReactionPath.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\ReactionStoichMgr.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\Reactor.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\ReactorBase.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\recipes.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\Resid1D.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\RxnRates.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\CKReader\src\RxnSpecies.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\sort.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\SpeciesThermo.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\SpeciesThermoFactory.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\SpeciesThermoMgr.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\speciesThermoTypes.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\cvode\include\spgmr.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\State.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\StFlow.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\StoichManager.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\stringUtils.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\surfKinetics.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\SurfPhase.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\TempCacher.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\TempFuncMgr.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\ThermoFactory.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\ThermoPhase.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\ThirdBodyMgr.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\TigerPolynomial.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\TransportFactory.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\units.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\utilities.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\vec_functions.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\Wall.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\xml.h
|
||||
# End Source File
|
||||
# End Group
|
||||
# End Target
|
||||
# End Project
|
||||
29
win32/vc6/cantera_examples/cantera_examples.dsw
Executable file
29
win32/vc6/cantera_examples/cantera_examples.dsw
Executable file
|
|
@ -0,0 +1,29 @@
|
|||
Microsoft Developer Studio Workspace File, Format Version 6.00
|
||||
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
|
||||
|
||||
###############################################################################
|
||||
|
||||
Project: "examples"="..\..\examples\cxx\examples.dsp" - Package Owner=<4>
|
||||
|
||||
Package=<5>
|
||||
{{{
|
||||
}}}
|
||||
|
||||
Package=<4>
|
||||
{{{
|
||||
}}}
|
||||
|
||||
###############################################################################
|
||||
|
||||
Global:
|
||||
|
||||
Package=<5>
|
||||
{{{
|
||||
}}}
|
||||
|
||||
Package=<3>
|
||||
{{{
|
||||
}}}
|
||||
|
||||
###############################################################################
|
||||
|
||||
107
win32/vc6/ck2cti/ck2cti.dsp
Normal file
107
win32/vc6/ck2cti/ck2cti.dsp
Normal file
|
|
@ -0,0 +1,107 @@
|
|||
# Microsoft Developer Studio Project File - Name="ck2cti" - Package Owner=<4>
|
||||
# Microsoft Developer Studio Generated Build File, Format Version 6.00
|
||||
# ** DO NOT EDIT **
|
||||
|
||||
# TARGTYPE "Win32 (x86) Console Application" 0x0103
|
||||
|
||||
CFG=ck2cti - Win32 Debug
|
||||
!MESSAGE This is not a valid makefile. To build this project using NMAKE,
|
||||
!MESSAGE use the Export Makefile command and run
|
||||
!MESSAGE
|
||||
!MESSAGE NMAKE /f "ck2cti.mak".
|
||||
!MESSAGE
|
||||
!MESSAGE You can specify a configuration when running NMAKE
|
||||
!MESSAGE by defining the macro CFG on the command line. For example:
|
||||
!MESSAGE
|
||||
!MESSAGE NMAKE /f "ck2cti.mak" CFG="ck2cti - Win32 Debug"
|
||||
!MESSAGE
|
||||
!MESSAGE Possible choices for configuration are:
|
||||
!MESSAGE
|
||||
!MESSAGE "ck2cti - Win32 Release" (based on "Win32 (x86) Console Application")
|
||||
!MESSAGE "ck2cti - Win32 Debug" (based on "Win32 (x86) Console Application")
|
||||
!MESSAGE
|
||||
|
||||
# Begin Project
|
||||
# PROP AllowPerConfigDependencies 0
|
||||
# PROP Scc_ProjName ""
|
||||
# PROP Scc_LocalPath ""
|
||||
CPP=cl.exe
|
||||
F90=df.exe
|
||||
RSC=rc.exe
|
||||
|
||||
!IF "$(CFG)" == "ck2cti - Win32 Release"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 0
|
||||
# PROP BASE Output_Dir "Release"
|
||||
# PROP BASE Intermediate_Dir "Release"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 0
|
||||
# PROP Output_Dir "../../bin"
|
||||
# PROP Intermediate_Dir "Release"
|
||||
# PROP Ignore_Export_Lib 0
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE F90 /compile_only /nologo /warn:nofileopt
|
||||
# ADD F90 /assume:underscore /compile_only /iface:nomixed_str_len_arg /iface:cref /libs:dll /names:lowercase /nologo /reentrancy:threaded /threads /warn:nofileopt
|
||||
# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
|
||||
# ADD CPP /nologo /MD /W3 /GX /O2 /I "../../Cantera/src" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
|
||||
# ADD BASE RSC /l 0x409 /d "NDEBUG"
|
||||
# ADD RSC /l 0x409 /d "NDEBUG"
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LINK32=link.exe
|
||||
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
|
||||
# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 /out:"../../build/bin/i686-pc-win32/ck2cti.exe"
|
||||
|
||||
!ELSEIF "$(CFG)" == "ck2cti - Win32 Debug"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 1
|
||||
# PROP BASE Output_Dir "Debug"
|
||||
# PROP BASE Intermediate_Dir "Debug"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 1
|
||||
# PROP Output_Dir "../../bin"
|
||||
# PROP Intermediate_Dir "Debug"
|
||||
# PROP Ignore_Export_Lib 0
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE F90 /check:bounds /compile_only /debug:full /nologo /traceback /warn:argument_checking /warn:nofileopt
|
||||
# ADD F90 /assume:underscore /check:bounds /compile_only /debug:full /iface:nomixed_str_len_arg /iface:cref /libs:dll /names:lowercase /nologo /reentrancy:threaded /threads /traceback /warn:argument_checking /warn:nofileopt
|
||||
# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c
|
||||
# ADD CPP /nologo /MD /W3 /Gm /GX /ZI /Od /I "../../Cantera/src" /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c
|
||||
# ADD BASE RSC /l 0x409 /d "_DEBUG"
|
||||
# ADD RSC /l 0x409 /d "_DEBUG"
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LINK32=link.exe
|
||||
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
|
||||
# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /out:"../../build/i686-pc-win32/bin/ck2cti_d.exe" /pdbtype:sept
|
||||
|
||||
!ENDIF
|
||||
|
||||
# Begin Target
|
||||
|
||||
# Name "ck2cti - Win32 Release"
|
||||
# Name "ck2cti - Win32 Debug"
|
||||
# Begin Group "Source Files"
|
||||
|
||||
# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\tools\src\ck2cti.cpp
|
||||
# End Source File
|
||||
# End Group
|
||||
# Begin Group "Header Files"
|
||||
|
||||
# PROP Default_Filter "h;hpp;hxx;hm;inl"
|
||||
# End Group
|
||||
# Begin Group "Resource Files"
|
||||
|
||||
# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
|
||||
# End Group
|
||||
# End Target
|
||||
# End Project
|
||||
213
win32/vc6/ckreader/ckreader.dsp
Executable file
213
win32/vc6/ckreader/ckreader.dsp
Executable file
|
|
@ -0,0 +1,213 @@
|
|||
# Microsoft Developer Studio Project File - Name="ckreader" - Package Owner=<4>
|
||||
# Microsoft Developer Studio Generated Build File, Format Version 6.00
|
||||
# ** DO NOT EDIT **
|
||||
|
||||
# TARGTYPE "Win32 (x86) Static Library" 0x0104
|
||||
|
||||
CFG=ckreader - Win32 Debug
|
||||
!MESSAGE This is not a valid makefile. To build this project using NMAKE,
|
||||
!MESSAGE use the Export Makefile command and run
|
||||
!MESSAGE
|
||||
!MESSAGE NMAKE /f "ckreader.mak".
|
||||
!MESSAGE
|
||||
!MESSAGE You can specify a configuration when running NMAKE
|
||||
!MESSAGE by defining the macro CFG on the command line. For example:
|
||||
!MESSAGE
|
||||
!MESSAGE NMAKE /f "ckreader.mak" CFG="ckreader - Win32 Debug"
|
||||
!MESSAGE
|
||||
!MESSAGE Possible choices for configuration are:
|
||||
!MESSAGE
|
||||
!MESSAGE "ckreader - Win32 Release" (based on "Win32 (x86) Static Library")
|
||||
!MESSAGE "ckreader - Win32 Debug" (based on "Win32 (x86) Static Library")
|
||||
!MESSAGE
|
||||
|
||||
# Begin Project
|
||||
# PROP AllowPerConfigDependencies 0
|
||||
# PROP Scc_ProjName ""
|
||||
# PROP Scc_LocalPath ""
|
||||
CPP=cl.exe
|
||||
F90=df.exe
|
||||
RSC=rc.exe
|
||||
|
||||
!IF "$(CFG)" == "ckreader - Win32 Release"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 0
|
||||
# PROP BASE Output_Dir "Release"
|
||||
# PROP BASE Intermediate_Dir "Release"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 0
|
||||
# PROP Output_Dir "Release"
|
||||
# PROP Intermediate_Dir "Release"
|
||||
# PROP Target_Dir ""
|
||||
# ADD F90 /assume:underscore /iface:nomixed_str_len_arg /iface:cref /libs:static /math_library:fast /names:lowercase
|
||||
# SUBTRACT F90 /threads
|
||||
# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c
|
||||
# ADD CPP /nologo /W3 /GX /I "../../include" /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c
|
||||
# ADD BASE RSC /l 0x409 /d "NDEBUG"
|
||||
# ADD RSC /l 0x409 /d "NDEBUG"
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LIB32=link.exe -lib
|
||||
# ADD BASE LIB32 /nologo
|
||||
# ADD LIB32 /nologo /out:"..\..\lib\ckreader.lib"
|
||||
|
||||
!ELSEIF "$(CFG)" == "ckreader - Win32 Debug"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 1
|
||||
# PROP BASE Output_Dir "Debug"
|
||||
# PROP BASE Intermediate_Dir "Debug"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 1
|
||||
# PROP Output_Dir "..\..\lib"
|
||||
# PROP Intermediate_Dir "Debug"
|
||||
# PROP Target_Dir ""
|
||||
# ADD F90 /assume:underscore /dbglibs /iface:nomixed_str_len_arg /iface:cref /names:lowercase
|
||||
# SUBTRACT F90 /threads
|
||||
# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c
|
||||
# ADD CPP /nologo /W3 /Gm /GX /ZI /Od /I "../../include" /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c
|
||||
# ADD BASE RSC /l 0x409 /d "_DEBUG"
|
||||
# ADD RSC /l 0x409 /d "_DEBUG"
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LIB32=link.exe -lib
|
||||
# ADD BASE LIB32 /nologo
|
||||
# ADD LIB32 /nologo /out:"..\..\lib\ckreader_d.lib"
|
||||
|
||||
!ENDIF
|
||||
|
||||
# Begin Target
|
||||
|
||||
# Name "ckreader - Win32 Release"
|
||||
# Name "ckreader - Win32 Debug"
|
||||
# Begin Group "Source Files"
|
||||
|
||||
# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\CKReader\src\atomicWeightDB.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\CKReader\src\CKParser.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\CKReader\src\ckr_utils.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\CKReader\src\CKReader.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\CKReader\src\filter.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\CKReader\src\Reaction.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\CKReader\src\thermoFunctions.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\CKReader\src\writelog.cpp
|
||||
# End Source File
|
||||
# End Group
|
||||
# Begin Group "Header Files"
|
||||
|
||||
# PROP Default_Filter "h;hpp;hxx;hm;inl"
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\CKReader\src\CKParser.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE="..\..\dv\cantera-1.1b\CKReader\src\CKParser.h"
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\CKReader\src\ckr_defs.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE="..\..\dv\cantera-1.1b\CKReader\src\ckr_defs.h"
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\CKReader\src\ckr_utils.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE="..\..\dv\cantera-1.1b\CKReader\src\ckr_utils.h"
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\CKReader\src\CKReader.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE="..\..\dv\cantera-1.1b\CKReader\src\CKReader.h"
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\CKReader\src\config.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE="..\..\dv\cantera-1.1b\CKReader\src\config.h"
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\CKReader\src\Constituent.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE="..\..\dv\cantera-1.1b\CKReader\src\Constituent.h"
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\CKReader\src\Element.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE="..\..\dv\cantera-1.1b\CKReader\src\Element.h"
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\CKReader\src\Reaction.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE="..\..\dv\cantera-1.1b\CKReader\src\Reaction.h"
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\CKReader\src\Species.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE="..\..\dv\cantera-1.1b\CKReader\src\Species.h"
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\CKReader\src\thermoFunctions.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE="..\..\dv\cantera-1.1b\CKReader\src\thermoFunctions.h"
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\CKReader\src\writelog.h
|
||||
# End Source File
|
||||
# End Group
|
||||
# End Target
|
||||
# End Project
|
||||
161
win32/vc6/clib/clib.dsp
Normal file
161
win32/vc6/clib/clib.dsp
Normal file
|
|
@ -0,0 +1,161 @@
|
|||
# Microsoft Developer Studio Project File - Name="clib" - Package Owner=<4>
|
||||
# Microsoft Developer Studio Generated Build File, Format Version 6.00
|
||||
# ** DO NOT EDIT **
|
||||
|
||||
# TARGTYPE "Win32 (x86) Static Library" 0x0104
|
||||
|
||||
CFG=clib - Win32 Debug
|
||||
!MESSAGE This is not a valid makefile. To build this project using NMAKE,
|
||||
!MESSAGE use the Export Makefile command and run
|
||||
!MESSAGE
|
||||
!MESSAGE NMAKE /f "clib.mak".
|
||||
!MESSAGE
|
||||
!MESSAGE You can specify a configuration when running NMAKE
|
||||
!MESSAGE by defining the macro CFG on the command line. For example:
|
||||
!MESSAGE
|
||||
!MESSAGE NMAKE /f "clib.mak" CFG="clib - Win32 Debug"
|
||||
!MESSAGE
|
||||
!MESSAGE Possible choices for configuration are:
|
||||
!MESSAGE
|
||||
!MESSAGE "clib - Win32 Release" (based on "Win32 (x86) Static Library")
|
||||
!MESSAGE "clib - Win32 Debug" (based on "Win32 (x86) Static Library")
|
||||
!MESSAGE
|
||||
|
||||
# Begin Project
|
||||
# PROP AllowPerConfigDependencies 0
|
||||
# PROP Scc_ProjName ""
|
||||
# PROP Scc_LocalPath ""
|
||||
CPP=cl.exe
|
||||
F90=df.exe
|
||||
RSC=rc.exe
|
||||
|
||||
!IF "$(CFG)" == "clib - Win32 Release"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 0
|
||||
# PROP BASE Output_Dir "Release"
|
||||
# PROP BASE Intermediate_Dir "Release"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 0
|
||||
# PROP Output_Dir "Release"
|
||||
# PROP Intermediate_Dir "Release"
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE F90 /compile_only /nologo /warn:nofileopt
|
||||
# ADD F90 /compile_only /libs:dll /nologo /threads /warn:nofileopt
|
||||
# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c
|
||||
# ADD CPP /nologo /MD /W3 /GX /O2 /I "../../Cantera/src" /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c
|
||||
# ADD BASE RSC /l 0x409 /d "NDEBUG"
|
||||
# ADD RSC /l 0x409 /d "NDEBUG"
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LIB32=link.exe -lib
|
||||
# ADD BASE LIB32 /nologo
|
||||
# ADD LIB32 /nologo /out:"../../build/lib/i686-pc-win32/clib.lib"
|
||||
|
||||
!ELSEIF "$(CFG)" == "clib - Win32 Debug"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 1
|
||||
# PROP BASE Output_Dir "Debug"
|
||||
# PROP BASE Intermediate_Dir "Debug"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 1
|
||||
# PROP Output_Dir "Debug"
|
||||
# PROP Intermediate_Dir "Debug"
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE F90 /check:bounds /compile_only /debug:full /nologo /traceback /warn:argument_checking /warn:nofileopt
|
||||
# ADD F90 /check:bounds /compile_only /debug:full /libs:dll /nologo /threads /traceback /warn:argument_checking /warn:nofileopt
|
||||
# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c
|
||||
# ADD CPP /nologo /MD /W3 /Gm /GX /ZI /Od /I "../../Cantera/src" /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c
|
||||
# ADD BASE RSC /l 0x409 /d "_DEBUG"
|
||||
# ADD RSC /l 0x409 /d "_DEBUG"
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LIB32=link.exe -lib
|
||||
# ADD BASE LIB32 /nologo
|
||||
# ADD LIB32 /nologo /out:"../../build/lib/i686-pc-win32/clib_d.lib"
|
||||
|
||||
!ENDIF
|
||||
|
||||
# Begin Target
|
||||
|
||||
# Name "clib - Win32 Release"
|
||||
# Name "clib - Win32 Debug"
|
||||
# Begin Group "Source Files"
|
||||
|
||||
# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat;f90;for;f;fpp"
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\clib\src\ct.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\clib\src\ctbdry.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\clib\src\ctfunc.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\clib\src\ctonedim.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\clib\src\ctreactor.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\clib\src\ctrpath.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\clib\src\ctsurf.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\clib\src\ctxml.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\clib\src\Storage.cpp
|
||||
# End Source File
|
||||
# End Group
|
||||
# Begin Group "Header Files"
|
||||
|
||||
# PROP Default_Filter "h;hpp;hxx;hm;inl;fi;fd"
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\clib\src\Cabinet.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\clib\src\ctbdry.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\matlab\cantera\src\ctmatutils.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\clib\src\ctreactor.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\clib\src\ctrpath.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\clib\src\ctxml.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\clib\src\Storage.h
|
||||
# End Source File
|
||||
# End Group
|
||||
# End Target
|
||||
# End Project
|
||||
161
win32/vc6/converters/converters.dsp
Normal file
161
win32/vc6/converters/converters.dsp
Normal file
|
|
@ -0,0 +1,161 @@
|
|||
# Microsoft Developer Studio Project File - Name="converters" - Package Owner=<4>
|
||||
# Microsoft Developer Studio Generated Build File, Format Version 6.00
|
||||
# ** DO NOT EDIT **
|
||||
|
||||
# TARGTYPE "Win32 (x86) Static Library" 0x0104
|
||||
|
||||
CFG=converters - Win32 Debug
|
||||
!MESSAGE This is not a valid makefile. To build this project using NMAKE,
|
||||
!MESSAGE use the Export Makefile command and run
|
||||
!MESSAGE
|
||||
!MESSAGE NMAKE /f "converters.mak".
|
||||
!MESSAGE
|
||||
!MESSAGE You can specify a configuration when running NMAKE
|
||||
!MESSAGE by defining the macro CFG on the command line. For example:
|
||||
!MESSAGE
|
||||
!MESSAGE NMAKE /f "converters.mak" CFG="converters - Win32 Debug"
|
||||
!MESSAGE
|
||||
!MESSAGE Possible choices for configuration are:
|
||||
!MESSAGE
|
||||
!MESSAGE "converters - Win32 Release" (based on "Win32 (x86) Static Library")
|
||||
!MESSAGE "converters - Win32 Debug" (based on "Win32 (x86) Static Library")
|
||||
!MESSAGE
|
||||
|
||||
# Begin Project
|
||||
# PROP AllowPerConfigDependencies 0
|
||||
# PROP Scc_ProjName ""
|
||||
# PROP Scc_LocalPath ""
|
||||
CPP=cl.exe
|
||||
F90=df.exe
|
||||
RSC=rc.exe
|
||||
|
||||
!IF "$(CFG)" == "converters - Win32 Release"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 0
|
||||
# PROP BASE Output_Dir "Release"
|
||||
# PROP BASE Intermediate_Dir "Release"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 0
|
||||
# PROP Output_Dir "Release"
|
||||
# PROP Intermediate_Dir "Release"
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE F90 /compile_only /nologo /warn:nofileopt
|
||||
# ADD F90 /assume:underscore /compile_only /iface:nomixed_str_len_arg /iface:cref /libs:dll /names:lowercase /nologo /reentrancy:threaded /threads /warn:nofileopt
|
||||
# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c
|
||||
# ADD CPP /nologo /MD /W3 /GX /O2 /I "../../Cantera/src" /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c
|
||||
# ADD BASE RSC /l 0x409 /d "NDEBUG"
|
||||
# ADD RSC /l 0x409 /d "NDEBUG"
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LIB32=link.exe -lib
|
||||
# ADD BASE LIB32 /nologo
|
||||
# ADD LIB32 /nologo /out:"../../build/lib/i686-pc-win32/converters.lib"
|
||||
|
||||
!ELSEIF "$(CFG)" == "converters - Win32 Debug"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 1
|
||||
# PROP BASE Output_Dir "Debug"
|
||||
# PROP BASE Intermediate_Dir "Debug"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 1
|
||||
# PROP Output_Dir "Debug"
|
||||
# PROP Intermediate_Dir "Debug"
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE F90 /check:bounds /compile_only /debug:full /nologo /traceback /warn:argument_checking /warn:nofileopt
|
||||
# ADD F90 /check:bounds /compile_only /debug:full /libs:dll /nologo /threads /traceback /warn:argument_checking /warn:nofileopt
|
||||
# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c
|
||||
# ADD CPP /nologo /MD /W3 /Gm /GX /ZI /Od /I "../../Cantera/src" /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c
|
||||
# ADD BASE RSC /l 0x409 /d "_DEBUG"
|
||||
# ADD RSC /l 0x409 /d "_DEBUG"
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LIB32=link.exe -lib
|
||||
# ADD BASE LIB32 /nologo
|
||||
# ADD LIB32 /nologo /out:"../../build/lib/i686-pc-win32/converters_d.lib"
|
||||
|
||||
!ENDIF
|
||||
|
||||
# Begin Target
|
||||
|
||||
# Name "converters - Win32 Release"
|
||||
# Name "converters - Win32 Debug"
|
||||
# Begin Group "Source Files"
|
||||
|
||||
# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat;f90;for;f;fpp"
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\converters\atomicWeightDB.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\converters\ck2ct.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\converters\CKParser.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\converters\ckr_utils.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\converters\CKReader.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\converters\Reaction.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\converters\thermoFunctions.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\converters\writelog.cpp
|
||||
# End Source File
|
||||
# End Group
|
||||
# Begin Group "Header Files"
|
||||
|
||||
# PROP Default_Filter "h;hpp;hxx;hm;inl;fi;fd"
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\converters\ck2ct.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\converters\CKParser.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\converters\ckr_defs.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\converters\ckr_utils.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\converters\CKReader.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\converters\Reaction.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\converters\thermoFunctions.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\converters\writelog.h
|
||||
# End Source File
|
||||
# End Group
|
||||
# End Target
|
||||
# End Project
|
||||
109
win32/vc6/ct/ct.dsp
Executable file
109
win32/vc6/ct/ct.dsp
Executable file
|
|
@ -0,0 +1,109 @@
|
|||
# Microsoft Developer Studio Project File - Name="ct" - Package Owner=<4>
|
||||
# Microsoft Developer Studio Generated Build File, Format Version 6.00
|
||||
# ** DO NOT EDIT **
|
||||
|
||||
# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102
|
||||
|
||||
CFG=ct - Win32 Debug
|
||||
!MESSAGE This is not a valid makefile. To build this project using NMAKE,
|
||||
!MESSAGE use the Export Makefile command and run
|
||||
!MESSAGE
|
||||
!MESSAGE NMAKE /f "ct.mak".
|
||||
!MESSAGE
|
||||
!MESSAGE You can specify a configuration when running NMAKE
|
||||
!MESSAGE by defining the macro CFG on the command line. For example:
|
||||
!MESSAGE
|
||||
!MESSAGE NMAKE /f "ct.mak" CFG="ct - Win32 Debug"
|
||||
!MESSAGE
|
||||
!MESSAGE Possible choices for configuration are:
|
||||
!MESSAGE
|
||||
!MESSAGE "ct - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library")
|
||||
!MESSAGE "ct - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library")
|
||||
!MESSAGE
|
||||
|
||||
# Begin Project
|
||||
# PROP AllowPerConfigDependencies 0
|
||||
# PROP Scc_ProjName ""
|
||||
# PROP Scc_LocalPath ""
|
||||
CPP=cl.exe
|
||||
F90=df.exe
|
||||
MTL=midl.exe
|
||||
RSC=rc.exe
|
||||
|
||||
!IF "$(CFG)" == "ct - Win32 Release"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 0
|
||||
# PROP BASE Output_Dir "Release"
|
||||
# PROP BASE Intermediate_Dir "Release"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 0
|
||||
# PROP Output_Dir "..\..\lib"
|
||||
# PROP Intermediate_Dir "Release"
|
||||
# PROP Ignore_Export_Lib 0
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE F90 /compile_only /dll /nologo /warn:nofileopt
|
||||
# ADD F90 /assume:underscore /compile_only /iface:nomixed_str_len_arg /iface:cref /dll /libs:static /math_library:fast /names:lowercase /nologo /warn:nofileopt
|
||||
# SUBTRACT F90 /threads
|
||||
# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "CT_EXPORTS" /YX /FD /c
|
||||
# ADD CPP /nologo /W3 /GX /O2 /Ob2 /I "../../Cantera/src" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "CT_EXPORTS" /YX /FD /c
|
||||
# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32
|
||||
# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32
|
||||
# ADD BASE RSC /l 0x409 /d "NDEBUG"
|
||||
# ADD RSC /l 0x409 /d "NDEBUG"
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LINK32=link.exe
|
||||
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /machine:I386
|
||||
# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib dfor.lib /nologo /dll /machine:I386 /include:"__matherr" /out:"c:\winnt\system32\cantera14.dll"
|
||||
|
||||
!ELSEIF "$(CFG)" == "ct - Win32 Debug"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 1
|
||||
# PROP BASE Output_Dir "Debug"
|
||||
# PROP BASE Intermediate_Dir "Debug"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 1
|
||||
# PROP Output_Dir "..\..\lib"
|
||||
# PROP Intermediate_Dir "Debug"
|
||||
# PROP Ignore_Export_Lib 0
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE F90 /check:bounds /compile_only /debug:full /dll /nologo /traceback /warn:argument_checking /warn:nofileopt
|
||||
# ADD F90 /assume:underscore /check:bounds /compile_only /debug:full /iface:nomixed_str_len_arg /iface:cref /dll /libs:static /names:lowercase /nologo /traceback /warn:argument_checking /warn:nofileopt
|
||||
# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "CT_EXPORTS" /YX /FD /GZ /c
|
||||
# ADD CPP /nologo /W3 /Gm /GX /ZI /Od /I "../../Cantera/src" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "CT_EXPORTS" /YX /FD /GZ /c
|
||||
# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32
|
||||
# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32
|
||||
# ADD BASE RSC /l 0x409 /d "_DEBUG"
|
||||
# ADD RSC /l 0x409 /d "_DEBUG"
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LINK32=link.exe
|
||||
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept
|
||||
# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib dfor.lib /nologo /dll /debug /machine:I386 /include:"__matherr" /out:"c:\winnt\system32\cantera14.dll" /pdbtype:sept
|
||||
|
||||
!ENDIF
|
||||
|
||||
# Begin Target
|
||||
|
||||
# Name "ct - Win32 Release"
|
||||
# Name "ct - Win32 Debug"
|
||||
# Begin Group "Source Files"
|
||||
|
||||
# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat;f90;for;f;fpp"
|
||||
# End Group
|
||||
# Begin Group "Header Files"
|
||||
|
||||
# PROP Default_Filter "h;hpp;hxx;hm;inl;fi;fd"
|
||||
# End Group
|
||||
# Begin Group "Resource Files"
|
||||
|
||||
# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
|
||||
# End Group
|
||||
# End Target
|
||||
# End Project
|
||||
194
win32/vc6/ctmath/ctmath.dsp
Executable file
194
win32/vc6/ctmath/ctmath.dsp
Executable file
|
|
@ -0,0 +1,194 @@
|
|||
# Microsoft Developer Studio Project File - Name="ctmath" - Package Owner=<4>
|
||||
# Microsoft Developer Studio Generated Build File, Format Version 6.00
|
||||
# ** DO NOT EDIT **
|
||||
|
||||
# TARGTYPE "Win32 (x86) Static Library" 0x0104
|
||||
|
||||
CFG=ctmath - Win32 Debug
|
||||
!MESSAGE This is not a valid makefile. To build this project using NMAKE,
|
||||
!MESSAGE use the Export Makefile command and run
|
||||
!MESSAGE
|
||||
!MESSAGE NMAKE /f "ctmath.mak".
|
||||
!MESSAGE
|
||||
!MESSAGE You can specify a configuration when running NMAKE
|
||||
!MESSAGE by defining the macro CFG on the command line. For example:
|
||||
!MESSAGE
|
||||
!MESSAGE NMAKE /f "ctmath.mak" CFG="ctmath - Win32 Debug"
|
||||
!MESSAGE
|
||||
!MESSAGE Possible choices for configuration are:
|
||||
!MESSAGE
|
||||
!MESSAGE "ctmath - Win32 Release" (based on "Win32 (x86) Static Library")
|
||||
!MESSAGE "ctmath - Win32 Debug" (based on "Win32 (x86) Static Library")
|
||||
!MESSAGE
|
||||
|
||||
# Begin Project
|
||||
# PROP AllowPerConfigDependencies 0
|
||||
# PROP Scc_ProjName ""
|
||||
# PROP Scc_LocalPath ""
|
||||
CPP=cl.exe
|
||||
F90=df.exe
|
||||
RSC=rc.exe
|
||||
|
||||
!IF "$(CFG)" == "ctmath - Win32 Release"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 0
|
||||
# PROP BASE Output_Dir "Release"
|
||||
# PROP BASE Intermediate_Dir "Release"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 0
|
||||
# PROP Output_Dir "..\..\lib"
|
||||
# PROP Intermediate_Dir "Release"
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE F90 /compile_only /nologo /warn:nofileopt
|
||||
# ADD F90 /assume:underscore /compile_only /iface:nomixed_str_len_arg /iface:cref /libs:dll /math_library:fast /names:lowercase /nologo /threads /warn:nofileopt
|
||||
# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c
|
||||
# ADD CPP /nologo /MD /W3 /GX /O2 /Ob2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c
|
||||
# ADD BASE RSC /l 0x409 /d "NDEBUG"
|
||||
# ADD RSC /l 0x409 /d "NDEBUG"
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LIB32=link.exe -lib
|
||||
# ADD BASE LIB32 /nologo
|
||||
# ADD LIB32 /nologo /out:"..\..\build\lib\i686-pc-win32\ctmath.lib"
|
||||
|
||||
!ELSEIF "$(CFG)" == "ctmath - Win32 Debug"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 1
|
||||
# PROP BASE Output_Dir "Debug"
|
||||
# PROP BASE Intermediate_Dir "Debug"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 1
|
||||
# PROP Output_Dir "../../lib"
|
||||
# PROP Intermediate_Dir "Debug"
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE F90 /check:bounds /compile_only /debug:full /nologo /traceback /warn:argument_checking /warn:nofileopt
|
||||
# ADD F90 /assume:underscore /check:bounds /compile_only /dbglibs /debug:none /iface:nomixed_str_len_arg /iface:cref /libs:dll /names:lowercase /nologo /optimize:0 /threads /traceback /warn:argument_checking /warn:nofileopt
|
||||
# SUBTRACT F90 /automatic /fast
|
||||
# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c
|
||||
# ADD CPP /nologo /MD /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c
|
||||
# ADD BASE RSC /l 0x409 /d "_DEBUG"
|
||||
# ADD RSC /l 0x409 /d "_DEBUG"
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LIB32=link.exe -lib
|
||||
# ADD BASE LIB32 /nologo
|
||||
# ADD LIB32 /nologo /out:"..\..\build\lib\i686-pc-win32\ctmath_d.lib"
|
||||
|
||||
!ENDIF
|
||||
|
||||
# Begin Target
|
||||
|
||||
# Name "ctmath - Win32 Release"
|
||||
# Name "ctmath - Win32 Debug"
|
||||
# Begin Group "Source Files"
|
||||
|
||||
# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat;f90;for;f;fpp"
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\math\daux.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\math\ddaspk.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\math\dgbefa.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\math\dgbsl.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\math\dgefa.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\math\dgesl.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\math\dp1vlu.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\math\dpcoef.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\math\dpolft.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\math\fdump.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\math\idamax.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\math\j4save.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\math\mach.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\math\pcoef.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\math\polfit.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\math\pvalue.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\math\xercnt.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\math\xerhlt.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\math\xermsg.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\math\xerprn.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\math\xersve.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\math\xgetua.f
|
||||
# End Source File
|
||||
# End Group
|
||||
# Begin Group "Header Files"
|
||||
|
||||
# PROP Default_Filter "h;hpp;hxx;hm;inl;fi;fd"
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\math\cblas.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\math\gmres.h
|
||||
# End Source File
|
||||
# End Group
|
||||
# End Target
|
||||
# End Project
|
||||
106
win32/vc6/ctsetup/ctsetup.dsp
Executable file
106
win32/vc6/ctsetup/ctsetup.dsp
Executable file
|
|
@ -0,0 +1,106 @@
|
|||
# Microsoft Developer Studio Project File - Name="ctsetup" - Package Owner=<4>
|
||||
# Microsoft Developer Studio Generated Build File, Format Version 6.00
|
||||
# ** DO NOT EDIT **
|
||||
|
||||
# TARGTYPE "Win32 (x86) Console Application" 0x0103
|
||||
|
||||
CFG=ctsetup - Win32 Debug
|
||||
!MESSAGE This is not a valid makefile. To build this project using NMAKE,
|
||||
!MESSAGE use the Export Makefile command and run
|
||||
!MESSAGE
|
||||
!MESSAGE NMAKE /f "ctsetup.mak".
|
||||
!MESSAGE
|
||||
!MESSAGE You can specify a configuration when running NMAKE
|
||||
!MESSAGE by defining the macro CFG on the command line. For example:
|
||||
!MESSAGE
|
||||
!MESSAGE NMAKE /f "ctsetup.mak" CFG="ctsetup - Win32 Debug"
|
||||
!MESSAGE
|
||||
!MESSAGE Possible choices for configuration are:
|
||||
!MESSAGE
|
||||
!MESSAGE "ctsetup - Win32 Release" (based on "Win32 (x86) Console Application")
|
||||
!MESSAGE "ctsetup - Win32 Debug" (based on "Win32 (x86) Console Application")
|
||||
!MESSAGE
|
||||
|
||||
# Begin Project
|
||||
# PROP AllowPerConfigDependencies 0
|
||||
# PROP Scc_ProjName ""
|
||||
# PROP Scc_LocalPath ""
|
||||
CPP=cl.exe
|
||||
F90=df.exe
|
||||
RSC=rc.exe
|
||||
|
||||
!IF "$(CFG)" == "ctsetup - Win32 Release"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 0
|
||||
# PROP BASE Output_Dir "Release"
|
||||
# PROP BASE Intermediate_Dir "Release"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 0
|
||||
# PROP Output_Dir "Release"
|
||||
# PROP Intermediate_Dir "Release"
|
||||
# PROP Ignore_Export_Lib 0
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE F90 /compile_only /nologo /warn:nofileopt
|
||||
# ADD F90 /compile_only /math_library:fast /nologo /warn:nofileopt
|
||||
# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
|
||||
# ADD CPP /nologo /W3 /GX /O2 /I "../../include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
|
||||
# ADD BASE RSC /l 0x409 /d "NDEBUG"
|
||||
# ADD RSC /l 0x409 /d "NDEBUG"
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LINK32=link.exe
|
||||
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
|
||||
# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 /out:"../../bin/ctsetup.exe"
|
||||
|
||||
!ELSEIF "$(CFG)" == "ctsetup - Win32 Debug"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 1
|
||||
# PROP BASE Output_Dir "Debug"
|
||||
# PROP BASE Intermediate_Dir "Debug"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 1
|
||||
# PROP Output_Dir "Debug"
|
||||
# PROP Intermediate_Dir "Debug"
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE F90 /check:bounds /compile_only /debug:full /nologo /traceback /warn:argument_checking /warn:nofileopt
|
||||
# ADD F90 /check:bounds /compile_only /debug:full /nologo /traceback /warn:argument_checking /warn:nofileopt
|
||||
# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c
|
||||
# ADD CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c
|
||||
# ADD BASE RSC /l 0x409 /d "_DEBUG"
|
||||
# ADD RSC /l 0x409 /d "_DEBUG"
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LINK32=link.exe
|
||||
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
|
||||
# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
|
||||
|
||||
!ENDIF
|
||||
|
||||
# Begin Target
|
||||
|
||||
# Name "ctsetup - Win32 Release"
|
||||
# Name "ctsetup - Win32 Debug"
|
||||
# Begin Group "Source Files"
|
||||
|
||||
# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\tools\src\ctsetup.cpp
|
||||
# End Source File
|
||||
# End Group
|
||||
# Begin Group "Header Files"
|
||||
|
||||
# PROP Default_Filter "h;hpp;hxx;hm;inl"
|
||||
# End Group
|
||||
# Begin Group "Resource Files"
|
||||
|
||||
# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
|
||||
# End Group
|
||||
# End Target
|
||||
# End Project
|
||||
195
win32/vc6/cvode/cvode.dsp
Executable file
195
win32/vc6/cvode/cvode.dsp
Executable file
|
|
@ -0,0 +1,195 @@
|
|||
# Microsoft Developer Studio Project File - Name="cvode" - Package Owner=<4>
|
||||
# Microsoft Developer Studio Generated Build File, Format Version 6.00
|
||||
# ** DO NOT EDIT **
|
||||
|
||||
# TARGTYPE "Win32 (x86) Static Library" 0x0104
|
||||
|
||||
CFG=cvode - Win32 Debug
|
||||
!MESSAGE This is not a valid makefile. To build this project using NMAKE,
|
||||
!MESSAGE use the Export Makefile command and run
|
||||
!MESSAGE
|
||||
!MESSAGE NMAKE /f "cvode.mak".
|
||||
!MESSAGE
|
||||
!MESSAGE You can specify a configuration when running NMAKE
|
||||
!MESSAGE by defining the macro CFG on the command line. For example:
|
||||
!MESSAGE
|
||||
!MESSAGE NMAKE /f "cvode.mak" CFG="cvode - Win32 Debug"
|
||||
!MESSAGE
|
||||
!MESSAGE Possible choices for configuration are:
|
||||
!MESSAGE
|
||||
!MESSAGE "cvode - Win32 Release" (based on "Win32 (x86) Static Library")
|
||||
!MESSAGE "cvode - Win32 Debug" (based on "Win32 (x86) Static Library")
|
||||
!MESSAGE
|
||||
|
||||
# Begin Project
|
||||
# PROP AllowPerConfigDependencies 0
|
||||
# PROP Scc_ProjName ""
|
||||
# PROP Scc_LocalPath ""
|
||||
CPP=cl.exe
|
||||
F90=df.exe
|
||||
RSC=rc.exe
|
||||
|
||||
!IF "$(CFG)" == "cvode - Win32 Release"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 0
|
||||
# PROP BASE Output_Dir "Release"
|
||||
# PROP BASE Intermediate_Dir "Release"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 0
|
||||
# PROP Output_Dir "..\..\lib"
|
||||
# PROP Intermediate_Dir "Release"
|
||||
# PROP Target_Dir ""
|
||||
# ADD F90 /assume:underscore /iface:nomixed_str_len_arg /iface:cref /libs:dll /math_library:fast /names:lowercase /threads
|
||||
# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c
|
||||
# ADD CPP /nologo /MD /W3 /GX /O2 /Ob2 /I "..\..\ext\cvode\include" /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c
|
||||
# ADD BASE RSC /l 0x409 /d "NDEBUG"
|
||||
# ADD RSC /l 0x409 /d "NDEBUG"
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LIB32=link.exe -lib
|
||||
# ADD BASE LIB32 /nologo
|
||||
# ADD LIB32 /nologo /out:"..\..\build\lib\i686-pc-win32\cvode.lib"
|
||||
|
||||
!ELSEIF "$(CFG)" == "cvode - Win32 Debug"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 1
|
||||
# PROP BASE Output_Dir "Debug"
|
||||
# PROP BASE Intermediate_Dir "Debug"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 1
|
||||
# PROP Output_Dir "../../lib"
|
||||
# PROP Intermediate_Dir "Debug"
|
||||
# PROP Target_Dir ""
|
||||
# ADD F90 /assume:underscore /dbglibs /iface:nomixed_str_len_arg /iface:cref /libs:dll /names:lowercase /threads
|
||||
# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c
|
||||
# ADD CPP /nologo /MD /W3 /Gm /GX /ZI /Od /I "..\..\ext\cvode\include" /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c
|
||||
# ADD BASE RSC /l 0x409 /d "_DEBUG"
|
||||
# ADD RSC /l 0x409 /d "_DEBUG"
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LIB32=link.exe -lib
|
||||
# ADD BASE LIB32 /nologo
|
||||
# ADD LIB32 /nologo /out:"..\..\build\lib\i686-pc-win32\cvode_d.lib"
|
||||
|
||||
!ENDIF
|
||||
|
||||
# Begin Target
|
||||
|
||||
# Name "cvode - Win32 Release"
|
||||
# Name "cvode - Win32 Debug"
|
||||
# Begin Group "Source Files"
|
||||
|
||||
# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\cvode\source\band.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\cvode\source\cvband.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\cvode\source\cvbandpre.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\cvode\source\cvdense.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\cvode\source\cvdiag.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\cvode\source\cvode.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\cvode\source\cvspgmr.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\cvode\source\dense.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\cvode\source\iterativ.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\cvode\source\llnlmath.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\cvode\source\nvector.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\cvode\source\spgmr.c
|
||||
# End Source File
|
||||
# End Group
|
||||
# Begin Group "Header Files"
|
||||
|
||||
# PROP Default_Filter "h;hpp;hxx;hm;inl"
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\cvode\include\band.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\cvode\include\cvband.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\cvode\include\cvbandpre.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\cvode\include\cvdense.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\cvode\include\cvdiag.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\cvode\include\cvode.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\cvode\include\cvspgmr.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\cvode\include\dense.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\cvode\include\iterativ.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\cvode\include\llnlmath.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\cvode\include\llnltyps.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\cvode\include\nvector.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\cvode\include\spgmr.h
|
||||
# End Source File
|
||||
# End Group
|
||||
# End Target
|
||||
# End Project
|
||||
105
win32/vc6/cxxutils/cxxutils.dsp
Normal file
105
win32/vc6/cxxutils/cxxutils.dsp
Normal file
|
|
@ -0,0 +1,105 @@
|
|||
# Microsoft Developer Studio Project File - Name="cxxutils" - Package Owner=<4>
|
||||
# Microsoft Developer Studio Generated Build File, Format Version 6.00
|
||||
# ** DO NOT EDIT **
|
||||
|
||||
# TARGTYPE "Win32 (x86) Static Library" 0x0104
|
||||
|
||||
CFG=cxxutils - Win32 Debug
|
||||
!MESSAGE This is not a valid makefile. To build this project using NMAKE,
|
||||
!MESSAGE use the Export Makefile command and run
|
||||
!MESSAGE
|
||||
!MESSAGE NMAKE /f "cxxutils.mak".
|
||||
!MESSAGE
|
||||
!MESSAGE You can specify a configuration when running NMAKE
|
||||
!MESSAGE by defining the macro CFG on the command line. For example:
|
||||
!MESSAGE
|
||||
!MESSAGE NMAKE /f "cxxutils.mak" CFG="cxxutils - Win32 Debug"
|
||||
!MESSAGE
|
||||
!MESSAGE Possible choices for configuration are:
|
||||
!MESSAGE
|
||||
!MESSAGE "cxxutils - Win32 Release" (based on "Win32 (x86) Static Library")
|
||||
!MESSAGE "cxxutils - Win32 Debug" (based on "Win32 (x86) Static Library")
|
||||
!MESSAGE
|
||||
|
||||
# Begin Project
|
||||
# PROP AllowPerConfigDependencies 0
|
||||
# PROP Scc_ProjName ""
|
||||
# PROP Scc_LocalPath ""
|
||||
CPP=cl.exe
|
||||
F90=df.exe
|
||||
RSC=rc.exe
|
||||
|
||||
!IF "$(CFG)" == "cxxutils - Win32 Release"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 0
|
||||
# PROP BASE Output_Dir "Release"
|
||||
# PROP BASE Intermediate_Dir "Release"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 0
|
||||
# PROP Output_Dir "Release"
|
||||
# PROP Intermediate_Dir "Release"
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE F90 /compile_only /nologo /warn:nofileopt
|
||||
# ADD F90 /compile_only /libs:dll /nologo /threads /warn:nofileopt
|
||||
# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c
|
||||
# ADD CPP /nologo /MD /W3 /GX /O2 /I "../../Cantera/src" /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c
|
||||
# ADD BASE RSC /l 0x409 /d "NDEBUG"
|
||||
# ADD RSC /l 0x409 /d "NDEBUG"
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LIB32=link.exe -lib
|
||||
# ADD BASE LIB32 /nologo
|
||||
# ADD LIB32 /nologo /out:"..\..\build\lib\i686-pc-win32\cxxutils.lib"
|
||||
|
||||
!ELSEIF "$(CFG)" == "cxxutils - Win32 Debug"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 1
|
||||
# PROP BASE Output_Dir "Debug"
|
||||
# PROP BASE Intermediate_Dir "Debug"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 1
|
||||
# PROP Output_Dir "Debug"
|
||||
# PROP Intermediate_Dir "Debug"
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE F90 /check:bounds /compile_only /debug:full /nologo /traceback /warn:argument_checking /warn:nofileopt
|
||||
# ADD F90 /check:bounds /compile_only /debug:full /libs:dll /nologo /threads /traceback /warn:argument_checking /warn:nofileopt
|
||||
# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c
|
||||
# ADD CPP /nologo /MD /W3 /Gm /GX /ZI /Od /I "../../Cantera/src" /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c
|
||||
# ADD BASE RSC /l 0x409 /d "_DEBUG"
|
||||
# ADD RSC /l 0x409 /d "_DEBUG"
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LIB32=link.exe -lib
|
||||
# ADD BASE LIB32 /nologo
|
||||
# ADD LIB32 /nologo /out:"..\..\build\lib\i686-pc-win32\cxxutils_d.lib"
|
||||
|
||||
!ENDIF
|
||||
|
||||
# Begin Target
|
||||
|
||||
# Name "cxxutils - Win32 Release"
|
||||
# Name "cxxutils - Win32 Debug"
|
||||
# Begin Group "Source Files"
|
||||
|
||||
# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat;f90;for;f;fpp"
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\cxx\src\cxxutils.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\cxx\src\writelog.cpp
|
||||
# End Source File
|
||||
# End Group
|
||||
# Begin Group "Header Files"
|
||||
|
||||
# PROP Default_Filter "h;hpp;hxx;hm;inl;fi;fd"
|
||||
# End Group
|
||||
# End Target
|
||||
# End Project
|
||||
174
win32/vc6/cxxutils/cxxutils.mak
Normal file
174
win32/vc6/cxxutils/cxxutils.mak
Normal file
|
|
@ -0,0 +1,174 @@
|
|||
# Microsoft Developer Studio Generated NMAKE File, Based on cxxutils.dsp
|
||||
!IF "$(CFG)" == ""
|
||||
CFG=cxxutils - Win32 Debug
|
||||
!MESSAGE No configuration specified. Defaulting to cxxutils - Win32 Debug.
|
||||
!ENDIF
|
||||
|
||||
!IF "$(CFG)" != "cxxutils - Win32 Release" && "$(CFG)" != "cxxutils - Win32 Debug"
|
||||
!MESSAGE Invalid configuration "$(CFG)" specified.
|
||||
!MESSAGE You can specify a configuration when running NMAKE
|
||||
!MESSAGE by defining the macro CFG on the command line. For example:
|
||||
!MESSAGE
|
||||
!MESSAGE NMAKE /f "cxxutils.mak" CFG="cxxutils - Win32 Debug"
|
||||
!MESSAGE
|
||||
!MESSAGE Possible choices for configuration are:
|
||||
!MESSAGE
|
||||
!MESSAGE "cxxutils - Win32 Release" (based on "Win32 (x86) Static Library")
|
||||
!MESSAGE "cxxutils - Win32 Debug" (based on "Win32 (x86) Static Library")
|
||||
!MESSAGE
|
||||
!ERROR An invalid configuration is specified.
|
||||
!ENDIF
|
||||
|
||||
!IF "$(OS)" == "Windows_NT"
|
||||
NULL=
|
||||
!ELSE
|
||||
NULL=nul
|
||||
!ENDIF
|
||||
|
||||
CPP=cl.exe
|
||||
F90=df.exe
|
||||
RSC=rc.exe
|
||||
|
||||
!IF "$(CFG)" == "cxxutils - Win32 Release"
|
||||
|
||||
OUTDIR=.\Release
|
||||
INTDIR=.\Release
|
||||
|
||||
ALL : "..\..\lib\cxxutils.lib"
|
||||
|
||||
|
||||
CLEAN :
|
||||
-@erase "$(INTDIR)\cxxutils.obj"
|
||||
-@erase "$(INTDIR)\vc60.idb"
|
||||
-@erase "$(INTDIR)\writelog.obj"
|
||||
-@erase "..\..\lib\cxxutils.lib"
|
||||
|
||||
"$(OUTDIR)" :
|
||||
if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)"
|
||||
|
||||
F90_PROJ=/compile_only /libs:dll /nologo /threads /warn:nofileopt /module:"Release/" /object:"Release/"
|
||||
F90_OBJS=.\Release/
|
||||
CPP_PROJ=/nologo /MD /W3 /GX /O2 /I "../../Cantera/src" /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /Fp"$(INTDIR)\cxxutils.pch" /YX /Fo"$(INTDIR)\\" /Fd"$(INTDIR)\\" /FD /c
|
||||
BSC32=bscmake.exe
|
||||
BSC32_FLAGS=/nologo /o"$(OUTDIR)\cxxutils.bsc"
|
||||
BSC32_SBRS= \
|
||||
|
||||
LIB32=link.exe -lib
|
||||
LIB32_FLAGS=/nologo /out:"..\..\lib\cxxutils.lib"
|
||||
LIB32_OBJS= \
|
||||
"$(INTDIR)\cxxutils.obj" \
|
||||
"$(INTDIR)\writelog.obj"
|
||||
|
||||
"..\..\lib\cxxutils.lib" : "$(OUTDIR)" $(DEF_FILE) $(LIB32_OBJS)
|
||||
$(LIB32) @<<
|
||||
$(LIB32_FLAGS) $(DEF_FLAGS) $(LIB32_OBJS)
|
||||
<<
|
||||
|
||||
!ELSEIF "$(CFG)" == "cxxutils - Win32 Debug"
|
||||
|
||||
OUTDIR=.\Debug
|
||||
INTDIR=.\Debug
|
||||
|
||||
ALL : "..\..\lib\cxxutils_d.lib"
|
||||
|
||||
|
||||
CLEAN :
|
||||
-@erase "$(INTDIR)\cxxutils.obj"
|
||||
-@erase "$(INTDIR)\vc60.idb"
|
||||
-@erase "$(INTDIR)\vc60.pdb"
|
||||
-@erase "$(INTDIR)\writelog.obj"
|
||||
-@erase "..\..\lib\cxxutils_d.lib"
|
||||
|
||||
"$(OUTDIR)" :
|
||||
if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)"
|
||||
|
||||
F90_PROJ=/check:bounds /compile_only /debug:full /libs:dll /nologo /threads /traceback /warn:argument_checking /warn:nofileopt /module:"Debug/" /object:"Debug/" /pdbfile:"Debug/DF60.PDB"
|
||||
F90_OBJS=.\Debug/
|
||||
CPP_PROJ=/nologo /MD /W3 /Gm /GX /ZI /Od /I "../../Cantera/src" /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /Fp"$(INTDIR)\cxxutils.pch" /YX /Fo"$(INTDIR)\\" /Fd"$(INTDIR)\\" /FD /GZ /c
|
||||
BSC32=bscmake.exe
|
||||
BSC32_FLAGS=/nologo /o"$(OUTDIR)\cxxutils.bsc"
|
||||
BSC32_SBRS= \
|
||||
|
||||
LIB32=link.exe -lib
|
||||
LIB32_FLAGS=/nologo /out:"..\..\lib\cxxutils_d.lib"
|
||||
LIB32_OBJS= \
|
||||
"$(INTDIR)\cxxutils.obj" \
|
||||
"$(INTDIR)\writelog.obj"
|
||||
|
||||
"..\..\lib\cxxutils_d.lib" : "$(OUTDIR)" $(DEF_FILE) $(LIB32_OBJS)
|
||||
$(LIB32) @<<
|
||||
$(LIB32_FLAGS) $(DEF_FLAGS) $(LIB32_OBJS)
|
||||
<<
|
||||
|
||||
!ENDIF
|
||||
|
||||
.c{$(INTDIR)}.obj::
|
||||
$(CPP) @<<
|
||||
$(CPP_PROJ) $<
|
||||
<<
|
||||
|
||||
.cpp{$(INTDIR)}.obj::
|
||||
$(CPP) @<<
|
||||
$(CPP_PROJ) $<
|
||||
<<
|
||||
|
||||
.cxx{$(INTDIR)}.obj::
|
||||
$(CPP) @<<
|
||||
$(CPP_PROJ) $<
|
||||
<<
|
||||
|
||||
.c{$(INTDIR)}.sbr::
|
||||
$(CPP) @<<
|
||||
$(CPP_PROJ) $<
|
||||
<<
|
||||
|
||||
.cpp{$(INTDIR)}.sbr::
|
||||
$(CPP) @<<
|
||||
$(CPP_PROJ) $<
|
||||
<<
|
||||
|
||||
.cxx{$(INTDIR)}.sbr::
|
||||
$(CPP) @<<
|
||||
$(CPP_PROJ) $<
|
||||
<<
|
||||
|
||||
.SUFFIXES: .fpp
|
||||
|
||||
.for{$(F90_OBJS)}.obj:
|
||||
$(F90) $(F90_PROJ) $<
|
||||
|
||||
.f{$(F90_OBJS)}.obj:
|
||||
$(F90) $(F90_PROJ) $<
|
||||
|
||||
.f90{$(F90_OBJS)}.obj:
|
||||
$(F90) $(F90_PROJ) $<
|
||||
|
||||
.fpp{$(F90_OBJS)}.obj:
|
||||
$(F90) $(F90_PROJ) $<
|
||||
|
||||
|
||||
!IF "$(NO_EXTERNAL_DEPS)" != "1"
|
||||
!IF EXISTS("cxxutils.dep")
|
||||
!INCLUDE "cxxutils.dep"
|
||||
!ELSE
|
||||
!MESSAGE Warning: cannot find "cxxutils.dep"
|
||||
!ENDIF
|
||||
!ENDIF
|
||||
|
||||
|
||||
!IF "$(CFG)" == "cxxutils - Win32 Release" || "$(CFG)" == "cxxutils - Win32 Debug"
|
||||
SOURCE=..\..\Cantera\cxx\cxxutils.cpp
|
||||
|
||||
"$(INTDIR)\cxxutils.obj" : $(SOURCE) "$(INTDIR)"
|
||||
$(CPP) $(CPP_PROJ) $(SOURCE)
|
||||
|
||||
|
||||
SOURCE=..\..\Cantera\cxx\writelog.cpp
|
||||
|
||||
"$(INTDIR)\writelog.obj" : $(SOURCE) "$(INTDIR)"
|
||||
$(CPP) $(CPP_PROJ) $(SOURCE)
|
||||
|
||||
|
||||
|
||||
!ENDIF
|
||||
|
||||
305
win32/vc6/lapack/lapack.dsp
Executable file
305
win32/vc6/lapack/lapack.dsp
Executable file
|
|
@ -0,0 +1,305 @@
|
|||
# Microsoft Developer Studio Project File - Name="lapack" - Package Owner=<4>
|
||||
# Microsoft Developer Studio Generated Build File, Format Version 6.00
|
||||
# ** DO NOT EDIT **
|
||||
|
||||
# TARGTYPE "Win32 (x86) Static Library" 0x0104
|
||||
|
||||
CFG=lapack - Win32 Debug
|
||||
!MESSAGE This is not a valid makefile. To build this project using NMAKE,
|
||||
!MESSAGE use the Export Makefile command and run
|
||||
!MESSAGE
|
||||
!MESSAGE NMAKE /f "lapack.mak".
|
||||
!MESSAGE
|
||||
!MESSAGE You can specify a configuration when running NMAKE
|
||||
!MESSAGE by defining the macro CFG on the command line. For example:
|
||||
!MESSAGE
|
||||
!MESSAGE NMAKE /f "lapack.mak" CFG="lapack - Win32 Debug"
|
||||
!MESSAGE
|
||||
!MESSAGE Possible choices for configuration are:
|
||||
!MESSAGE
|
||||
!MESSAGE "lapack - Win32 Release" (based on "Win32 (x86) Static Library")
|
||||
!MESSAGE "lapack - Win32 Debug" (based on "Win32 (x86) Static Library")
|
||||
!MESSAGE
|
||||
|
||||
# Begin Project
|
||||
# PROP AllowPerConfigDependencies 0
|
||||
# PROP Scc_ProjName ""
|
||||
# PROP Scc_LocalPath ""
|
||||
CPP=cl.exe
|
||||
F90=df.exe
|
||||
RSC=rc.exe
|
||||
|
||||
!IF "$(CFG)" == "lapack - Win32 Release"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 0
|
||||
# PROP BASE Output_Dir "Release"
|
||||
# PROP BASE Intermediate_Dir "Release"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 0
|
||||
# PROP Output_Dir "Release"
|
||||
# PROP Intermediate_Dir "Release"
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE F90 /compile_only /nologo /warn:nofileopt
|
||||
# ADD F90 /assume:underscore /compile_only /iface:nomixed_str_len_arg /iface:cref /libs:dll /math_library:fast /names:lowercase /nologo /threads /warn:nofileopt
|
||||
# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c
|
||||
# ADD CPP /nologo /MD /W3 /GX /O2 /Ob2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c
|
||||
# ADD BASE RSC /l 0x409 /d "NDEBUG"
|
||||
# ADD RSC /l 0x409 /d "NDEBUG"
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LIB32=link.exe -lib
|
||||
# ADD BASE LIB32 /nologo
|
||||
# ADD LIB32 /nologo /out:"..\..\build\lib\i686-pc-win32\ctlapack.lib"
|
||||
|
||||
!ELSEIF "$(CFG)" == "lapack - Win32 Debug"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 1
|
||||
# PROP BASE Output_Dir "Debug"
|
||||
# PROP BASE Intermediate_Dir "Debug"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 1
|
||||
# PROP Output_Dir "..\..\lib"
|
||||
# PROP Intermediate_Dir "Debug"
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE F90 /check:bounds /compile_only /debug:full /nologo /traceback /warn:argument_checking /warn:nofileopt
|
||||
# ADD F90 /assume:underscore /check:bounds /compile_only /dbglibs /debug:full /iface:nomixed_str_len_arg /iface:cref /libs:dll /names:lowercase /nologo /threads /traceback /warn:argument_checking /warn:nofileopt
|
||||
# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c
|
||||
# ADD CPP /nologo /MD /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c
|
||||
# ADD BASE RSC /l 0x409 /d "_DEBUG"
|
||||
# ADD RSC /l 0x409 /d "_DEBUG"
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LIB32=link.exe -lib
|
||||
# ADD BASE LIB32 /nologo
|
||||
# ADD LIB32 /nologo /out:"..\..\build\lib\i686-pc-win32\ctlapack_d.lib"
|
||||
|
||||
!ENDIF
|
||||
|
||||
# Begin Target
|
||||
|
||||
# Name "lapack - Win32 Release"
|
||||
# Name "lapack - Win32 Debug"
|
||||
# Begin Group "Source Files"
|
||||
|
||||
# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat;f90;for;f;fpp"
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\lapack\dbdsqr.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\lapack\dgbsv.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\lapack\dgbtf2.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\lapack\dgbtrf.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\lapack\dgbtrs.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\lapack\dgebd2.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\lapack\dgebrd.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\lapack\dgelq2.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\lapack\dgelqf.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\lapack\dgelss.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\lapack\dgeqr2.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\lapack\dgeqrf.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\lapack\dgetf2.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\lapack\dgetrf.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\lapack\dgetri.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\lapack\dgetrs.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\lapack\dlabad.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\lapack\dlabrd.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\lapack\dlacpy.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\lapack\dlamch.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\lapack\dlange.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\lapack\dlapy2.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\lapack\dlarf.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\lapack\dlarfb.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\lapack\dlarfg.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\lapack\dlarft.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\lapack\dlartg.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\lapack\dlas2.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\lapack\dlascl.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\lapack\dlaset.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\lapack\dlasq1.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\lapack\dlasq2.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\lapack\dlasq3.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\lapack\dlasq4.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\lapack\dlasr.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\lapack\dlasrt.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\lapack\dlassq.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\lapack\dlasv2.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\lapack\dlaswp.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\lapack\dorg2r.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\lapack\dorgbr.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\lapack\dorgl2.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\lapack\dorglq.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\lapack\dorgqr.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\lapack\dorm2r.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\lapack\dormbr.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\lapack\dorml2.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\lapack\dormlq.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\lapack\dormqr.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\lapack\drscl.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\lapack\ilaenv.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\lapack\lsame.f
|
||||
# End Source File
|
||||
# End Group
|
||||
# Begin Group "Header Files"
|
||||
|
||||
# PROP Default_Filter "h;hpp;hxx;hm;inl;fi;fd"
|
||||
# End Group
|
||||
# End Target
|
||||
# End Project
|
||||
161
win32/vc6/oneD/oneD.dsp
Normal file
161
win32/vc6/oneD/oneD.dsp
Normal file
|
|
@ -0,0 +1,161 @@
|
|||
# Microsoft Developer Studio Project File - Name="oneD" - Package Owner=<4>
|
||||
# Microsoft Developer Studio Generated Build File, Format Version 6.00
|
||||
# ** DO NOT EDIT **
|
||||
|
||||
# TARGTYPE "Win32 (x86) Static Library" 0x0104
|
||||
|
||||
CFG=oneD - Win32 Debug
|
||||
!MESSAGE This is not a valid makefile. To build this project using NMAKE,
|
||||
!MESSAGE use the Export Makefile command and run
|
||||
!MESSAGE
|
||||
!MESSAGE NMAKE /f "oneD.mak".
|
||||
!MESSAGE
|
||||
!MESSAGE You can specify a configuration when running NMAKE
|
||||
!MESSAGE by defining the macro CFG on the command line. For example:
|
||||
!MESSAGE
|
||||
!MESSAGE NMAKE /f "oneD.mak" CFG="oneD - Win32 Debug"
|
||||
!MESSAGE
|
||||
!MESSAGE Possible choices for configuration are:
|
||||
!MESSAGE
|
||||
!MESSAGE "oneD - Win32 Release" (based on "Win32 (x86) Static Library")
|
||||
!MESSAGE "oneD - Win32 Debug" (based on "Win32 (x86) Static Library")
|
||||
!MESSAGE
|
||||
|
||||
# Begin Project
|
||||
# PROP AllowPerConfigDependencies 0
|
||||
# PROP Scc_ProjName ""
|
||||
# PROP Scc_LocalPath ""
|
||||
CPP=cl.exe
|
||||
F90=df.exe
|
||||
RSC=rc.exe
|
||||
|
||||
!IF "$(CFG)" == "oneD - Win32 Release"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 0
|
||||
# PROP BASE Output_Dir "Release"
|
||||
# PROP BASE Intermediate_Dir "Release"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 0
|
||||
# PROP Output_Dir "Release"
|
||||
# PROP Intermediate_Dir "Release"
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE F90 /compile_only /nologo /warn:nofileopt
|
||||
# ADD F90 /assume:underscore /compile_only /iface:nomixed_str_len_arg /iface:cref /libs:dll /names:lowercase /nologo /threads /warn:nofileopt
|
||||
# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c
|
||||
# ADD CPP /nologo /MD /W3 /GX /O2 /I "../../Cantera/src" /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c
|
||||
# ADD BASE RSC /l 0x409 /d "NDEBUG"
|
||||
# ADD RSC /l 0x409 /d "NDEBUG"
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LIB32=link.exe -lib
|
||||
# ADD BASE LIB32 /nologo
|
||||
# ADD LIB32 /nologo /out:"..\..\build\lib\i686-pc-win32\oneD.lib"
|
||||
|
||||
!ELSEIF "$(CFG)" == "oneD - Win32 Debug"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 1
|
||||
# PROP BASE Output_Dir "Debug"
|
||||
# PROP BASE Intermediate_Dir "Debug"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 1
|
||||
# PROP Output_Dir "Debug"
|
||||
# PROP Intermediate_Dir "Debug"
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE F90 /check:bounds /compile_only /debug:full /nologo /traceback /warn:argument_checking /warn:nofileopt
|
||||
# ADD F90 /check:bounds /compile_only /debug:full /libs:dll /nologo /threads /traceback /warn:argument_checking /warn:nofileopt
|
||||
# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c
|
||||
# ADD CPP /nologo /MD /W3 /Gm /GX /ZI /Od /I "../../Cantera/src" /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c
|
||||
# ADD BASE RSC /l 0x409 /d "_DEBUG"
|
||||
# ADD RSC /l 0x409 /d "_DEBUG"
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LIB32=link.exe -lib
|
||||
# ADD BASE LIB32 /nologo
|
||||
# ADD LIB32 /nologo /out:"..\..\build\lib\i686-pc-win32\oneD_d.lib"
|
||||
|
||||
!ENDIF
|
||||
|
||||
# Begin Target
|
||||
|
||||
# Name "oneD - Win32 Release"
|
||||
# Name "oneD - Win32 Debug"
|
||||
# Begin Group "Source Files"
|
||||
|
||||
# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\oneD\boundaries1D.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\oneD\MultiJac.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\oneD\MultiNewton.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\oneD\newton_utils.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\oneD\OneDim.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\oneD\refine.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\oneD\Sim1D.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\oneD\StFlow.cpp
|
||||
# End Source File
|
||||
# End Group
|
||||
# Begin Group "Header Files"
|
||||
|
||||
# PROP Default_Filter "h;hpp;hxx;hm;inl"
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\oneD\Inlet1D.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\oneD\Jac1D.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\oneD\MultiJac.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\oneD\MultiNewton.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\oneD\Newton1D.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\oneD\OneDim.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\oneD\Resid1D.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\oneD\StFlow.h
|
||||
# End Source File
|
||||
# End Group
|
||||
# End Target
|
||||
# End Project
|
||||
129
win32/vc6/recipes/recipes.dsp
Executable file
129
win32/vc6/recipes/recipes.dsp
Executable file
|
|
@ -0,0 +1,129 @@
|
|||
# Microsoft Developer Studio Project File - Name="recipes" - Package Owner=<4>
|
||||
# Microsoft Developer Studio Generated Build File, Format Version 6.00
|
||||
# ** DO NOT EDIT **
|
||||
|
||||
# TARGTYPE "Win32 (x86) Static Library" 0x0104
|
||||
|
||||
CFG=recipes - Win32 Debug
|
||||
!MESSAGE This is not a valid makefile. To build this project using NMAKE,
|
||||
!MESSAGE use the Export Makefile command and run
|
||||
!MESSAGE
|
||||
!MESSAGE NMAKE /f "recipes.mak".
|
||||
!MESSAGE
|
||||
!MESSAGE You can specify a configuration when running NMAKE
|
||||
!MESSAGE by defining the macro CFG on the command line. For example:
|
||||
!MESSAGE
|
||||
!MESSAGE NMAKE /f "recipes.mak" CFG="recipes - Win32 Debug"
|
||||
!MESSAGE
|
||||
!MESSAGE Possible choices for configuration are:
|
||||
!MESSAGE
|
||||
!MESSAGE "recipes - Win32 Release" (based on "Win32 (x86) Static Library")
|
||||
!MESSAGE "recipes - Win32 Debug" (based on "Win32 (x86) Static Library")
|
||||
!MESSAGE
|
||||
|
||||
# Begin Project
|
||||
# PROP AllowPerConfigDependencies 0
|
||||
# PROP Scc_ProjName ""
|
||||
# PROP Scc_LocalPath ""
|
||||
CPP=cl.exe
|
||||
F90=df.exe
|
||||
RSC=rc.exe
|
||||
|
||||
!IF "$(CFG)" == "recipes - Win32 Release"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 0
|
||||
# PROP BASE Output_Dir "Release"
|
||||
# PROP BASE Intermediate_Dir "Release"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 0
|
||||
# PROP Output_Dir "Release"
|
||||
# PROP Intermediate_Dir "Release"
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE F90 /compile_only /nologo /warn:nofileopt
|
||||
# ADD F90 /assume:underscore /compile_only /iface:nomixed_str_len_arg /iface:cref /libs:dll /math_library:fast /names:lowercase /nologo /threads /warn:nofileopt
|
||||
# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c
|
||||
# ADD CPP /nologo /MD /W3 /GX /O2 /Ob2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c
|
||||
# ADD BASE RSC /l 0x409 /d "NDEBUG"
|
||||
# ADD RSC /l 0x409 /d "NDEBUG"
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LIB32=link.exe -lib
|
||||
# ADD BASE LIB32 /nologo
|
||||
# ADD LIB32 /nologo /out:"..\..\build\lib\i686-pc-win32\recipes.lib"
|
||||
|
||||
!ELSEIF "$(CFG)" == "recipes - Win32 Debug"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 1
|
||||
# PROP BASE Output_Dir "Debug"
|
||||
# PROP BASE Intermediate_Dir "Debug"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 1
|
||||
# PROP Output_Dir "Debug"
|
||||
# PROP Intermediate_Dir "Debug"
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE F90 /check:bounds /compile_only /debug:full /nologo /traceback /warn:argument_checking /warn:nofileopt
|
||||
# ADD F90 /assume:underscore /check:bounds /compile_only /dbglibs /debug:full /iface:nomixed_str_len_arg /iface:cref /libs:dll /names:lowercase /nologo /threads /traceback /warn:argument_checking /warn:nofileopt
|
||||
# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c
|
||||
# ADD CPP /nologo /MD /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c
|
||||
# ADD BASE RSC /l 0x409 /d "_DEBUG"
|
||||
# ADD RSC /l 0x409 /d "_DEBUG"
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LIB32=link.exe -lib
|
||||
# ADD BASE LIB32 /nologo
|
||||
# ADD LIB32 /nologo /out:"..\..\build\lib\i686-pc-win32\recipes_d.lib"
|
||||
|
||||
!ENDIF
|
||||
|
||||
# Begin Target
|
||||
|
||||
# Name "recipes - Win32 Release"
|
||||
# Name "recipes - Win32 Debug"
|
||||
# Begin Group "Source Files"
|
||||
|
||||
# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat;f90;for;f;fpp"
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\recipes\simp1.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\recipes\simp2.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\recipes\simp3.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\recipes\simplx.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\recipes\splie2.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\recipes\splin2.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\recipes\spline.f
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\recipes\splint.f
|
||||
# End Source File
|
||||
# End Group
|
||||
# Begin Group "Header Files"
|
||||
|
||||
# PROP Default_Filter "h;hpp;hxx;hm;inl;fi;fd"
|
||||
# End Group
|
||||
# End Target
|
||||
# End Project
|
||||
157
win32/vc6/tpx/tpx.dsp
Normal file
157
win32/vc6/tpx/tpx.dsp
Normal file
|
|
@ -0,0 +1,157 @@
|
|||
# Microsoft Developer Studio Project File - Name="tpx" - Package Owner=<4>
|
||||
# Microsoft Developer Studio Generated Build File, Format Version 6.00
|
||||
# ** DO NOT EDIT **
|
||||
|
||||
# TARGTYPE "Win32 (x86) Static Library" 0x0104
|
||||
|
||||
CFG=tpx - Win32 Debug
|
||||
!MESSAGE This is not a valid makefile. To build this project using NMAKE,
|
||||
!MESSAGE use the Export Makefile command and run
|
||||
!MESSAGE
|
||||
!MESSAGE NMAKE /f "tpx.mak".
|
||||
!MESSAGE
|
||||
!MESSAGE You can specify a configuration when running NMAKE
|
||||
!MESSAGE by defining the macro CFG on the command line. For example:
|
||||
!MESSAGE
|
||||
!MESSAGE NMAKE /f "tpx.mak" CFG="tpx - Win32 Debug"
|
||||
!MESSAGE
|
||||
!MESSAGE Possible choices for configuration are:
|
||||
!MESSAGE
|
||||
!MESSAGE "tpx - Win32 Release" (based on "Win32 (x86) Static Library")
|
||||
!MESSAGE "tpx - Win32 Debug" (based on "Win32 (x86) Static Library")
|
||||
!MESSAGE
|
||||
|
||||
# Begin Project
|
||||
# PROP AllowPerConfigDependencies 0
|
||||
# PROP Scc_ProjName ""
|
||||
# PROP Scc_LocalPath ""
|
||||
CPP=cl.exe
|
||||
F90=df.exe
|
||||
RSC=rc.exe
|
||||
|
||||
!IF "$(CFG)" == "tpx - Win32 Release"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 0
|
||||
# PROP BASE Output_Dir "Release"
|
||||
# PROP BASE Intermediate_Dir "Release"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 0
|
||||
# PROP Output_Dir "Release"
|
||||
# PROP Intermediate_Dir "Release"
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE F90 /compile_only /nologo /warn:nofileopt
|
||||
# ADD F90 /assume:underscore /compile_only /iface:nomixed_str_len_arg /iface:cref /libs:dll /names:lowercase /nologo /reentrancy:threaded /warn:nofileopt
|
||||
# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c
|
||||
# ADD CPP /nologo /MD /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c
|
||||
# ADD BASE RSC /l 0x409 /d "NDEBUG"
|
||||
# ADD RSC /l 0x409 /d "NDEBUG"
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LIB32=link.exe -lib
|
||||
# ADD BASE LIB32 /nologo
|
||||
# ADD LIB32 /nologo /out:"..\..\build\lib\i686-pc-win32\tpx.lib"
|
||||
|
||||
!ELSEIF "$(CFG)" == "tpx - Win32 Debug"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 1
|
||||
# PROP BASE Output_Dir "Debug"
|
||||
# PROP BASE Intermediate_Dir "Debug"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 1
|
||||
# PROP Output_Dir "Debug"
|
||||
# PROP Intermediate_Dir "Debug"
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE F90 /check:bounds /compile_only /debug:full /nologo /traceback /warn:argument_checking /warn:nofileopt
|
||||
# ADD F90 /assume:underscore /check:bounds /compile_only /debug:full /iface:nomixed_str_len_arg /iface:cref /libs:dll /names:lowercase /nologo /reentrancy:threaded /traceback /warn:argument_checking /warn:nofileopt
|
||||
# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c
|
||||
# ADD CPP /nologo /MD /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c
|
||||
# ADD BASE RSC /l 0x409 /d "_DEBUG"
|
||||
# ADD RSC /l 0x409 /d "_DEBUG"
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LIB32=link.exe -lib
|
||||
# ADD BASE LIB32 /nologo
|
||||
# ADD LIB32 /nologo /out:"..\..\build\lib\i686-pc-win32\tpx_d.lib"
|
||||
|
||||
!ENDIF
|
||||
|
||||
# Begin Target
|
||||
|
||||
# Name "tpx - Win32 Release"
|
||||
# Name "tpx - Win32 Debug"
|
||||
# Begin Group "Source Files"
|
||||
|
||||
# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat;f90;for;f;fpp"
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\tpx\Hydrogen.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\tpx\Methane.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\tpx\Nitrogen.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\tpx\Oxygen.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\tpx\Sub.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\tpx\utils.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\tpx\Water.cpp
|
||||
# End Source File
|
||||
# End Group
|
||||
# Begin Group "Header Files"
|
||||
|
||||
# PROP Default_Filter "h;hpp;hxx;hm;inl;fi;fd"
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\tpx\Hydrogen.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\tpx\Methane.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\tpx\Nitrogen.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\tpx\Oxygen.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\tpx\Sub.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\tpx\subs.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\tpx\utils.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\ext\tpx\Water.h
|
||||
# End Source File
|
||||
# End Group
|
||||
# End Target
|
||||
# End Project
|
||||
224
win32/vc6/tpx/tpx.mak
Normal file
224
win32/vc6/tpx/tpx.mak
Normal file
|
|
@ -0,0 +1,224 @@
|
|||
# Microsoft Developer Studio Generated NMAKE File, Based on tpx.dsp
|
||||
!IF "$(CFG)" == ""
|
||||
CFG=tpx - Win32 Debug
|
||||
!MESSAGE No configuration specified. Defaulting to tpx - Win32 Debug.
|
||||
!ENDIF
|
||||
|
||||
!IF "$(CFG)" != "tpx - Win32 Release" && "$(CFG)" != "tpx - Win32 Debug"
|
||||
!MESSAGE Invalid configuration "$(CFG)" specified.
|
||||
!MESSAGE You can specify a configuration when running NMAKE
|
||||
!MESSAGE by defining the macro CFG on the command line. For example:
|
||||
!MESSAGE
|
||||
!MESSAGE NMAKE /f "tpx.mak" CFG="tpx - Win32 Debug"
|
||||
!MESSAGE
|
||||
!MESSAGE Possible choices for configuration are:
|
||||
!MESSAGE
|
||||
!MESSAGE "tpx - Win32 Release" (based on "Win32 (x86) Static Library")
|
||||
!MESSAGE "tpx - Win32 Debug" (based on "Win32 (x86) Static Library")
|
||||
!MESSAGE
|
||||
!ERROR An invalid configuration is specified.
|
||||
!ENDIF
|
||||
|
||||
!IF "$(OS)" == "Windows_NT"
|
||||
NULL=
|
||||
!ELSE
|
||||
NULL=nul
|
||||
!ENDIF
|
||||
|
||||
CPP=cl.exe
|
||||
F90=df.exe
|
||||
RSC=rc.exe
|
||||
|
||||
!IF "$(CFG)" == "tpx - Win32 Release"
|
||||
|
||||
OUTDIR=.\Release
|
||||
INTDIR=.\Release
|
||||
|
||||
ALL : "..\..\lib\tpx.lib"
|
||||
|
||||
|
||||
CLEAN :
|
||||
-@erase "$(INTDIR)\Hydrogen.obj"
|
||||
-@erase "$(INTDIR)\Methane.obj"
|
||||
-@erase "$(INTDIR)\Nitrogen.obj"
|
||||
-@erase "$(INTDIR)\Oxygen.obj"
|
||||
-@erase "$(INTDIR)\Sub.obj"
|
||||
-@erase "$(INTDIR)\utils.obj"
|
||||
-@erase "$(INTDIR)\vc60.idb"
|
||||
-@erase "$(INTDIR)\Water.obj"
|
||||
-@erase "..\..\lib\tpx.lib"
|
||||
|
||||
"$(OUTDIR)" :
|
||||
if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)"
|
||||
|
||||
F90_PROJ=/assume:underscore /compile_only /iface:nomixed_str_len_arg /iface:cref /libs:dll /names:lowercase /nologo /reentrancy:threaded /warn:nofileopt /module:"Release/" /object:"Release/"
|
||||
F90_OBJS=.\Release/
|
||||
CPP_PROJ=/nologo /MD /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /Fp"$(INTDIR)\tpx.pch" /YX /Fo"$(INTDIR)\\" /Fd"$(INTDIR)\\" /FD /c
|
||||
BSC32=bscmake.exe
|
||||
BSC32_FLAGS=/nologo /o"$(OUTDIR)\tpx.bsc"
|
||||
BSC32_SBRS= \
|
||||
|
||||
LIB32=link.exe -lib
|
||||
LIB32_FLAGS=/nologo /out:"..\..\lib\tpx.lib"
|
||||
LIB32_OBJS= \
|
||||
"$(INTDIR)\Methane.obj" \
|
||||
"$(INTDIR)\Nitrogen.obj" \
|
||||
"$(INTDIR)\Oxygen.obj" \
|
||||
"$(INTDIR)\Sub.obj" \
|
||||
"$(INTDIR)\utils.obj" \
|
||||
"$(INTDIR)\Water.obj" \
|
||||
"$(INTDIR)\Hydrogen.obj"
|
||||
|
||||
"..\..\lib\tpx.lib" : "$(OUTDIR)" $(DEF_FILE) $(LIB32_OBJS)
|
||||
$(LIB32) @<<
|
||||
$(LIB32_FLAGS) $(DEF_FLAGS) $(LIB32_OBJS)
|
||||
<<
|
||||
|
||||
!ELSEIF "$(CFG)" == "tpx - Win32 Debug"
|
||||
|
||||
OUTDIR=.\Debug
|
||||
INTDIR=.\Debug
|
||||
|
||||
ALL : "..\..\lib\tpx_d.lib"
|
||||
|
||||
|
||||
CLEAN :
|
||||
-@erase "$(INTDIR)\Hydrogen.obj"
|
||||
-@erase "$(INTDIR)\Methane.obj"
|
||||
-@erase "$(INTDIR)\Nitrogen.obj"
|
||||
-@erase "$(INTDIR)\Oxygen.obj"
|
||||
-@erase "$(INTDIR)\Sub.obj"
|
||||
-@erase "$(INTDIR)\utils.obj"
|
||||
-@erase "$(INTDIR)\vc60.idb"
|
||||
-@erase "$(INTDIR)\vc60.pdb"
|
||||
-@erase "$(INTDIR)\Water.obj"
|
||||
-@erase "..\..\lib\tpx_d.lib"
|
||||
|
||||
"$(OUTDIR)" :
|
||||
if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)"
|
||||
|
||||
F90_PROJ=/assume:underscore /check:bounds /compile_only /debug:full /iface:nomixed_str_len_arg /iface:cref /libs:dll /names:lowercase /nologo /reentrancy:threaded /traceback /warn:argument_checking /warn:nofileopt /module:"Debug/" /object:"Debug/" /pdbfile:"Debug/DF60.PDB"
|
||||
F90_OBJS=.\Debug/
|
||||
CPP_PROJ=/nologo /MD /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /Fp"$(INTDIR)\tpx.pch" /YX /Fo"$(INTDIR)\\" /Fd"$(INTDIR)\\" /FD /GZ /c
|
||||
BSC32=bscmake.exe
|
||||
BSC32_FLAGS=/nologo /o"$(OUTDIR)\tpx.bsc"
|
||||
BSC32_SBRS= \
|
||||
|
||||
LIB32=link.exe -lib
|
||||
LIB32_FLAGS=/nologo /out:"..\..\lib\tpx_d.lib"
|
||||
LIB32_OBJS= \
|
||||
"$(INTDIR)\Methane.obj" \
|
||||
"$(INTDIR)\Nitrogen.obj" \
|
||||
"$(INTDIR)\Oxygen.obj" \
|
||||
"$(INTDIR)\Sub.obj" \
|
||||
"$(INTDIR)\utils.obj" \
|
||||
"$(INTDIR)\Water.obj" \
|
||||
"$(INTDIR)\Hydrogen.obj"
|
||||
|
||||
"..\..\lib\tpx_d.lib" : "$(OUTDIR)" $(DEF_FILE) $(LIB32_OBJS)
|
||||
$(LIB32) @<<
|
||||
$(LIB32_FLAGS) $(DEF_FLAGS) $(LIB32_OBJS)
|
||||
<<
|
||||
|
||||
!ENDIF
|
||||
|
||||
.c{$(INTDIR)}.obj::
|
||||
$(CPP) @<<
|
||||
$(CPP_PROJ) $<
|
||||
<<
|
||||
|
||||
.cpp{$(INTDIR)}.obj::
|
||||
$(CPP) @<<
|
||||
$(CPP_PROJ) $<
|
||||
<<
|
||||
|
||||
.cxx{$(INTDIR)}.obj::
|
||||
$(CPP) @<<
|
||||
$(CPP_PROJ) $<
|
||||
<<
|
||||
|
||||
.c{$(INTDIR)}.sbr::
|
||||
$(CPP) @<<
|
||||
$(CPP_PROJ) $<
|
||||
<<
|
||||
|
||||
.cpp{$(INTDIR)}.sbr::
|
||||
$(CPP) @<<
|
||||
$(CPP_PROJ) $<
|
||||
<<
|
||||
|
||||
.cxx{$(INTDIR)}.sbr::
|
||||
$(CPP) @<<
|
||||
$(CPP_PROJ) $<
|
||||
<<
|
||||
|
||||
.SUFFIXES: .fpp
|
||||
|
||||
.for{$(F90_OBJS)}.obj:
|
||||
$(F90) $(F90_PROJ) $<
|
||||
|
||||
.f{$(F90_OBJS)}.obj:
|
||||
$(F90) $(F90_PROJ) $<
|
||||
|
||||
.f90{$(F90_OBJS)}.obj:
|
||||
$(F90) $(F90_PROJ) $<
|
||||
|
||||
.fpp{$(F90_OBJS)}.obj:
|
||||
$(F90) $(F90_PROJ) $<
|
||||
|
||||
|
||||
!IF "$(NO_EXTERNAL_DEPS)" != "1"
|
||||
!IF EXISTS("tpx.dep")
|
||||
!INCLUDE "tpx.dep"
|
||||
!ELSE
|
||||
!MESSAGE Warning: cannot find "tpx.dep"
|
||||
!ENDIF
|
||||
!ENDIF
|
||||
|
||||
|
||||
!IF "$(CFG)" == "tpx - Win32 Release" || "$(CFG)" == "tpx - Win32 Debug"
|
||||
SOURCE=..\..\ext\tpx\Hydrogen.cpp
|
||||
|
||||
"$(INTDIR)\Hydrogen.obj" : $(SOURCE) "$(INTDIR)"
|
||||
$(CPP) $(CPP_PROJ) $(SOURCE)
|
||||
|
||||
|
||||
SOURCE=..\..\ext\tpx\Methane.cpp
|
||||
|
||||
"$(INTDIR)\Methane.obj" : $(SOURCE) "$(INTDIR)"
|
||||
$(CPP) $(CPP_PROJ) $(SOURCE)
|
||||
|
||||
|
||||
SOURCE=..\..\ext\tpx\Nitrogen.cpp
|
||||
|
||||
"$(INTDIR)\Nitrogen.obj" : $(SOURCE) "$(INTDIR)"
|
||||
$(CPP) $(CPP_PROJ) $(SOURCE)
|
||||
|
||||
|
||||
SOURCE=..\..\ext\tpx\Oxygen.cpp
|
||||
|
||||
"$(INTDIR)\Oxygen.obj" : $(SOURCE) "$(INTDIR)"
|
||||
$(CPP) $(CPP_PROJ) $(SOURCE)
|
||||
|
||||
|
||||
SOURCE=..\..\ext\tpx\Sub.cpp
|
||||
|
||||
"$(INTDIR)\Sub.obj" : $(SOURCE) "$(INTDIR)"
|
||||
$(CPP) $(CPP_PROJ) $(SOURCE)
|
||||
|
||||
|
||||
SOURCE=..\..\ext\tpx\utils.cpp
|
||||
|
||||
"$(INTDIR)\utils.obj" : $(SOURCE) "$(INTDIR)"
|
||||
$(CPP) $(CPP_PROJ) $(SOURCE)
|
||||
|
||||
|
||||
SOURCE=..\..\ext\tpx\Water.cpp
|
||||
|
||||
"$(INTDIR)\Water.obj" : $(SOURCE) "$(INTDIR)"
|
||||
$(CPP) $(CPP_PROJ) $(SOURCE)
|
||||
|
||||
|
||||
|
||||
!ENDIF
|
||||
|
||||
153
win32/vc6/transport/transport.dsp
Normal file
153
win32/vc6/transport/transport.dsp
Normal file
|
|
@ -0,0 +1,153 @@
|
|||
# Microsoft Developer Studio Project File - Name="transport" - Package Owner=<4>
|
||||
# Microsoft Developer Studio Generated Build File, Format Version 6.00
|
||||
# ** DO NOT EDIT **
|
||||
|
||||
# TARGTYPE "Win32 (x86) Static Library" 0x0104
|
||||
|
||||
CFG=transport - Win32 Debug
|
||||
!MESSAGE This is not a valid makefile. To build this project using NMAKE,
|
||||
!MESSAGE use the Export Makefile command and run
|
||||
!MESSAGE
|
||||
!MESSAGE NMAKE /f "transport.mak".
|
||||
!MESSAGE
|
||||
!MESSAGE You can specify a configuration when running NMAKE
|
||||
!MESSAGE by defining the macro CFG on the command line. For example:
|
||||
!MESSAGE
|
||||
!MESSAGE NMAKE /f "transport.mak" CFG="transport - Win32 Debug"
|
||||
!MESSAGE
|
||||
!MESSAGE Possible choices for configuration are:
|
||||
!MESSAGE
|
||||
!MESSAGE "transport - Win32 Release" (based on "Win32 (x86) Static Library")
|
||||
!MESSAGE "transport - Win32 Debug" (based on "Win32 (x86) Static Library")
|
||||
!MESSAGE
|
||||
|
||||
# Begin Project
|
||||
# PROP AllowPerConfigDependencies 0
|
||||
# PROP Scc_ProjName ""
|
||||
# PROP Scc_LocalPath ""
|
||||
CPP=cl.exe
|
||||
F90=df.exe
|
||||
RSC=rc.exe
|
||||
|
||||
!IF "$(CFG)" == "transport - Win32 Release"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 0
|
||||
# PROP BASE Output_Dir "Release"
|
||||
# PROP BASE Intermediate_Dir "Release"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 0
|
||||
# PROP Output_Dir "Release"
|
||||
# PROP Intermediate_Dir "Release"
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE F90 /compile_only /nologo /warn:nofileopt
|
||||
# ADD F90 /compile_only /libs:dll /nologo /threads /warn:nofileopt
|
||||
# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c
|
||||
# ADD CPP /nologo /MD /W3 /GX /O2 /I "../../Cantera/src" /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c
|
||||
# ADD BASE RSC /l 0x409 /d "NDEBUG"
|
||||
# ADD RSC /l 0x409 /d "NDEBUG"
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LIB32=link.exe -lib
|
||||
# ADD BASE LIB32 /nologo
|
||||
# ADD LIB32 /nologo /out:"..\..\build\lib\i686-pc-win32\transport.lib"
|
||||
|
||||
!ELSEIF "$(CFG)" == "transport - Win32 Debug"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 1
|
||||
# PROP BASE Output_Dir "Debug"
|
||||
# PROP BASE Intermediate_Dir "Debug"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 1
|
||||
# PROP Output_Dir "Debug"
|
||||
# PROP Intermediate_Dir "Debug"
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE F90 /check:bounds /compile_only /debug:full /nologo /traceback /warn:argument_checking /warn:nofileopt
|
||||
# ADD F90 /check:bounds /compile_only /debug:full /libs:dll /nologo /threads /traceback /warn:argument_checking /warn:nofileopt
|
||||
# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c
|
||||
# ADD CPP /nologo /MD /W3 /Gm /GX /ZI /Od /I "../../Cantera/src" /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c
|
||||
# ADD BASE RSC /l 0x409 /d "_DEBUG"
|
||||
# ADD RSC /l 0x409 /d "_DEBUG"
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LIB32=link.exe -lib
|
||||
# ADD BASE LIB32 /nologo
|
||||
# ADD LIB32 /nologo /out:"..\..\build\lib\i686-pc-win32\transport_d.lib"
|
||||
|
||||
!ENDIF
|
||||
|
||||
# Begin Target
|
||||
|
||||
# Name "transport - Win32 Release"
|
||||
# Name "transport - Win32 Debug"
|
||||
# Begin Group "Source Files"
|
||||
|
||||
# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat;f90;for;f;fpp"
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\transport\DustyGasTransport.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\transport\MixTransport.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\transport\MMCollisionInt.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\transport\MultiTransport.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\transport\SolidTransport.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\transport\TransportFactory.cpp
|
||||
# End Source File
|
||||
# End Group
|
||||
# Begin Group "Header Files"
|
||||
|
||||
# PROP Default_Filter "h;hpp;hxx;hm;inl;fi;fd"
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\transport\DustyGasTransport.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\transport\FtnTransport.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\transport\MixTransport.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\transport\MMCollisionInt.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\transport\MultiTransport.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\transport\TransportBase.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\transport\TransportFactory.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\transport\TransportParams.h
|
||||
# End Source File
|
||||
# End Group
|
||||
# End Target
|
||||
# End Project
|
||||
149
win32/vc6/zeroD/zeroD.dsp
Normal file
149
win32/vc6/zeroD/zeroD.dsp
Normal file
|
|
@ -0,0 +1,149 @@
|
|||
# Microsoft Developer Studio Project File - Name="zeroD" - Package Owner=<4>
|
||||
# Microsoft Developer Studio Generated Build File, Format Version 6.00
|
||||
# ** DO NOT EDIT **
|
||||
|
||||
# TARGTYPE "Win32 (x86) Static Library" 0x0104
|
||||
|
||||
CFG=zeroD - Win32 Debug
|
||||
!MESSAGE This is not a valid makefile. To build this project using NMAKE,
|
||||
!MESSAGE use the Export Makefile command and run
|
||||
!MESSAGE
|
||||
!MESSAGE NMAKE /f "zeroD.mak".
|
||||
!MESSAGE
|
||||
!MESSAGE You can specify a configuration when running NMAKE
|
||||
!MESSAGE by defining the macro CFG on the command line. For example:
|
||||
!MESSAGE
|
||||
!MESSAGE NMAKE /f "zeroD.mak" CFG="zeroD - Win32 Debug"
|
||||
!MESSAGE
|
||||
!MESSAGE Possible choices for configuration are:
|
||||
!MESSAGE
|
||||
!MESSAGE "zeroD - Win32 Release" (based on "Win32 (x86) Static Library")
|
||||
!MESSAGE "zeroD - Win32 Debug" (based on "Win32 (x86) Static Library")
|
||||
!MESSAGE
|
||||
|
||||
# Begin Project
|
||||
# PROP AllowPerConfigDependencies 0
|
||||
# PROP Scc_ProjName ""
|
||||
# PROP Scc_LocalPath ""
|
||||
CPP=cl.exe
|
||||
F90=df.exe
|
||||
RSC=rc.exe
|
||||
|
||||
!IF "$(CFG)" == "zeroD - Win32 Release"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 0
|
||||
# PROP BASE Output_Dir "Release"
|
||||
# PROP BASE Intermediate_Dir "Release"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 0
|
||||
# PROP Output_Dir "Release"
|
||||
# PROP Intermediate_Dir "Release"
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE F90 /compile_only /nologo /warn:nofileopt
|
||||
# ADD F90 /assume:underscore /compile_only /iface:nomixed_str_len_arg /iface:cref /libs:dll /names:lowercase /nologo /threads /warn:nofileopt
|
||||
# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c
|
||||
# ADD CPP /nologo /MD /W3 /GX /O2 /Ob2 /I "../../Cantera/src" /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c
|
||||
# ADD BASE RSC /l 0x409 /d "NDEBUG"
|
||||
# ADD RSC /l 0x409 /d "NDEBUG"
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LIB32=link.exe -lib
|
||||
# ADD BASE LIB32 /nologo
|
||||
# ADD LIB32 /nologo /out:"..\..\build\lib\i686-pc-win32\zeroD.lib"
|
||||
|
||||
!ELSEIF "$(CFG)" == "zeroD - Win32 Debug"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 1
|
||||
# PROP BASE Output_Dir "Debug"
|
||||
# PROP BASE Intermediate_Dir "Debug"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 1
|
||||
# PROP Output_Dir "Debug"
|
||||
# PROP Intermediate_Dir "Debug"
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE F90 /check:bounds /compile_only /debug:full /nologo /traceback /warn:argument_checking /warn:nofileopt
|
||||
# ADD F90 /check:bounds /compile_only /debug:full /libs:dll /nologo /threads /traceback /warn:argument_checking /warn:nofileopt
|
||||
# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c
|
||||
# ADD CPP /nologo /MD /W3 /Gm /GX /ZI /Od /I "../../Cantera/src" /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c
|
||||
# ADD BASE RSC /l 0x409 /d "_DEBUG"
|
||||
# ADD RSC /l 0x409 /d "_DEBUG"
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LIB32=link.exe -lib
|
||||
# ADD BASE LIB32 /nologo
|
||||
# ADD LIB32 /nologo /out:"..\..\build\lib\i686-pc-win32\zeroD_d.lib"
|
||||
|
||||
!ENDIF
|
||||
|
||||
# Begin Target
|
||||
|
||||
# Name "zeroD - Win32 Release"
|
||||
# Name "zeroD - Win32 Debug"
|
||||
# Begin Group "Source Files"
|
||||
|
||||
# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\zeroD\FlowDevice.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\zeroD\Reactor.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\zeroD\ReactorBase.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\zeroD\ReactorNet.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\zeroD\Wall.cpp
|
||||
# End Source File
|
||||
# End Group
|
||||
# Begin Group "Header Files"
|
||||
|
||||
# PROP Default_Filter "h;hpp;hxx;hm;inl"
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\zeroD\flowControllers.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\zeroD\FlowDevice.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\zeroD\PID_Controller.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\zeroD\Reactor.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\zeroD\ReactorBase.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\zeroD\ReactorNet.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\zeroD\Reservoir.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Cantera\src\zeroD\Wall.h
|
||||
# End Source File
|
||||
# End Group
|
||||
# End Target
|
||||
# End Project
|
||||
5
win32/vc7/.cvsignore
Normal file
5
win32/vc7/.cvsignore
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
status
|
||||
*.ncb
|
||||
cantera.suo
|
||||
cantera_examples.suo
|
||||
Debug
|
||||
2
win32/vc7/SetupCantera/.cvsignore
Normal file
2
win32/vc7/SetupCantera/.cvsignore
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
Debug
|
||||
Release
|
||||
16924
win32/vc7/SetupCantera/SetupCantera.vdproj
Executable file
16924
win32/vc7/SetupCantera/SetupCantera.vdproj
Executable file
File diff suppressed because it is too large
Load diff
11918
win32/vc7/SetupCantera/SetupCanteraLite.vdproj
Executable file
11918
win32/vc7/SetupCantera/SetupCanteraLite.vdproj
Executable file
File diff suppressed because it is too large
Load diff
176
win32/vc7/Sundials/CVODES/CVODES.vcproj
Normal file
176
win32/vc7/Sundials/CVODES/CVODES.vcproj
Normal file
|
|
@ -0,0 +1,176 @@
|
|||
<?xml version="1.0" encoding="Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="7.10"
|
||||
Name="CVODES"
|
||||
ProjectGUID="{12D156A1-1BF6-42DF-8572-416AC1E9FC03}"
|
||||
Keyword="Win32Proj">
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"/>
|
||||
</Platforms>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="Debug"
|
||||
IntermediateDirectory="Debug"
|
||||
ConfigurationType="4"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="0"
|
||||
AdditionalIncludeDirectories="../../../../../sundials/include;.."
|
||||
PreprocessorDefinitions="WIN32;_DEBUG;_LIB"
|
||||
MinimalRebuild="TRUE"
|
||||
BasicRuntimeChecks="3"
|
||||
RuntimeLibrary="5"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
Detect64BitPortabilityProblems="TRUE"
|
||||
DebugInformationFormat="4"/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="$(OutDir)/CVODES.lib"/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="Release"
|
||||
IntermediateDirectory="Release"
|
||||
ConfigurationType="4"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalIncludeDirectories="../../../../../sundials/include;.."
|
||||
PreprocessorDefinitions="WIN32;NDEBUG;_LIB"
|
||||
RuntimeLibrary="2"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
Detect64BitPortabilityProblems="TRUE"
|
||||
DebugInformationFormat="3"/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="$(OutDir)/CVODES.lib"/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<References>
|
||||
</References>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
||||
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}">
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\sundials\src\cvodes\cvodea.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\sundials\src\cvodes\cvodea_io.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\sundials\src\cvodes\cvodes.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\sundials\src\cvodes\cvodes_band.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\sundials\src\cvodes\cvodes_bandpre.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\sundials\src\cvodes\cvodes_bbdpre.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\sundials\src\cvodes\cvodes_dense.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\sundials\src\cvodes\cvodes_diag.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\sundials\src\cvodes\cvodes_io.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\sundials\src\cvodes\cvodes_spbcgs.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\sundials\src\cvodes\cvodes_spgmr.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\sundials\src\cvodes\cvodes_spils.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\sundials\src\cvodes\cvodes_sptfqmr.c">
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Header Files"
|
||||
Filter="h;hpp;hxx;hm;inl;inc;xsd"
|
||||
UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}">
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\sundials\src\cvodes\cvodes_band_impl.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\sundials\src\cvodes\cvodes_bandpre_impl.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\sundials\src\cvodes\cvodes_bbdpre_impl.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\sundials\src\cvodes\cvodes_dense_impl.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\sundials\src\cvodes\cvodes_diag_impl.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\sundials\src\cvodes\cvodes_impl.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\sundials\src\cvodes\cvodes_spils_impl.h">
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Resource Files"
|
||||
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
||||
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}">
|
||||
</Filter>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
134
win32/vc7/Sundials/CVODES_DENSE/CVODES_DENSE.vcproj
Normal file
134
win32/vc7/Sundials/CVODES_DENSE/CVODES_DENSE.vcproj
Normal file
|
|
@ -0,0 +1,134 @@
|
|||
<?xml version="1.0" encoding="Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="7.10"
|
||||
Name="CVSDENX"
|
||||
ProjectGUID="{C68E7C26-47F9-4066-9F9D-E9D601929D35}"
|
||||
Keyword="Win32Proj">
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"/>
|
||||
</Platforms>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="Debug"
|
||||
IntermediateDirectory="Debug"
|
||||
ConfigurationType="1"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="0"
|
||||
AdditionalIncludeDirectories="../../../../../sundials/shared/include;../../../../../sundials/config"
|
||||
PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE"
|
||||
MinimalRebuild="TRUE"
|
||||
BasicRuntimeChecks="3"
|
||||
RuntimeLibrary="5"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
Detect64BitPortabilityProblems="TRUE"
|
||||
DebugInformationFormat="4"/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
OutputFile="$(OutDir)/CVODES_DENSE.exe"
|
||||
LinkIncremental="2"
|
||||
GenerateDebugInformation="TRUE"
|
||||
ProgramDatabaseFile="$(OutDir)/CVODES_DENSE.pdb"
|
||||
SubSystem="1"
|
||||
TargetMachine="1"/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCWebDeploymentTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="Release"
|
||||
IntermediateDirectory="Release"
|
||||
ConfigurationType="1"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalIncludeDirectories="../../../../../sundials/include"
|
||||
PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE"
|
||||
RuntimeLibrary="2"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
Detect64BitPortabilityProblems="TRUE"
|
||||
DebugInformationFormat="3"/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
OutputFile="$(OutDir)/CVODES_DENSE.exe"
|
||||
LinkIncremental="1"
|
||||
GenerateDebugInformation="TRUE"
|
||||
SubSystem="1"
|
||||
OptimizeReferences="2"
|
||||
EnableCOMDATFolding="2"
|
||||
TargetMachine="1"/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCWebDeploymentTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<References>
|
||||
</References>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
||||
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}">
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\sundials\examples\cvodes\serial\cvsdenx.c">
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Header Files"
|
||||
Filter="h;hpp;hxx;hm;inl;inc;xsd"
|
||||
UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}">
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Resource Files"
|
||||
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
||||
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}">
|
||||
</Filter>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
161
win32/vc7/Sundials/IDA/IDA.vcproj
Normal file
161
win32/vc7/Sundials/IDA/IDA.vcproj
Normal file
|
|
@ -0,0 +1,161 @@
|
|||
<?xml version="1.0" encoding="Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="7.10"
|
||||
Name="IDA"
|
||||
ProjectGUID="{6F1DC619-9B1B-483D-965A-E06E511D2115}"
|
||||
Keyword="Win32Proj">
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"/>
|
||||
</Platforms>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="Debug"
|
||||
IntermediateDirectory="Debug"
|
||||
ConfigurationType="4"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="0"
|
||||
AdditionalIncludeDirectories=""..\..\..\..\..\sundials\ida\include";"..\..\..\..\..\sundials\shared\include";"..\..\..\..\..\sundials\config""
|
||||
PreprocessorDefinitions="WIN32;_DEBUG;_LIB"
|
||||
MinimalRebuild="TRUE"
|
||||
BasicRuntimeChecks="3"
|
||||
RuntimeLibrary="5"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
Detect64BitPortabilityProblems="TRUE"
|
||||
DebugInformationFormat="4"/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="$(OutDir)/IDA.lib"/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="Release"
|
||||
IntermediateDirectory="Release"
|
||||
ConfigurationType="4"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalIncludeDirectories=""..\..\..\..\..\sundials\include";"
|
||||
PreprocessorDefinitions="WIN32;NDEBUG;_LIB"
|
||||
RuntimeLibrary="2"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
Detect64BitPortabilityProblems="TRUE"
|
||||
DebugInformationFormat="3"/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="$(OutDir)/IDA.lib"/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<References>
|
||||
</References>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
||||
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}">
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\sundials\src\ida\ida.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\sundials\src\ida\ida_band.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\sundials\src\ida\ida_bbdpre.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\sundials\src\ida\ida_dense.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\sundials\src\ida\ida_ic.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\sundials\src\ida\ida_io.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\sundials\src\ida\ida_spbcgs.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\sundials\src\ida\ida_spgmr.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\sundials\src\ida\ida_spils.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\sundials\src\ida\ida_sptfqmr.c">
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Header Files"
|
||||
Filter="h;hpp;hxx;hm;inl;inc;xsd"
|
||||
UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}">
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\sundials\src\ida\ida_band_impl.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\sundials\src\ida\ida_bbdpre_impl.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\sundials\src\ida\ida_dense_impl.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\sundials\src\ida\ida_impl.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\sundials\src\ida\ida_spils_impl.h">
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Resource Files"
|
||||
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
||||
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}">
|
||||
</Filter>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
158
win32/vc7/Sundials/KINSOL/KINSOL.vcproj
Normal file
158
win32/vc7/Sundials/KINSOL/KINSOL.vcproj
Normal file
|
|
@ -0,0 +1,158 @@
|
|||
<?xml version="1.0" encoding="Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="7.10"
|
||||
Name="KINSOL"
|
||||
ProjectGUID="{E57613BA-3727-4203-A0D3-F768FE175DD1}"
|
||||
Keyword="Win32Proj">
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"/>
|
||||
</Platforms>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="Debug"
|
||||
IntermediateDirectory="Debug"
|
||||
ConfigurationType="4"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="0"
|
||||
AdditionalIncludeDirectories=""..\..\..\..\..\sundials\kinsol\include";"..\..\..\..\..\sundials\shared\include";"..\..\..\..\..\sundials\config""
|
||||
PreprocessorDefinitions="WIN32;_DEBUG;_LIB"
|
||||
MinimalRebuild="TRUE"
|
||||
BasicRuntimeChecks="3"
|
||||
RuntimeLibrary="5"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
Detect64BitPortabilityProblems="TRUE"
|
||||
DebugInformationFormat="4"/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="$(OutDir)/KINSOL.lib"/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="Release"
|
||||
IntermediateDirectory="Release"
|
||||
ConfigurationType="4"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalIncludeDirectories=""..\..\..\..\..\sundials\include""
|
||||
PreprocessorDefinitions="WIN32;NDEBUG;_LIB"
|
||||
RuntimeLibrary="2"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
Detect64BitPortabilityProblems="TRUE"
|
||||
DebugInformationFormat="3"/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="$(OutDir)/KINSOL.lib"/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<References>
|
||||
</References>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
||||
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}">
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\sundials\src\kinsol\kinsol.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\sundials\src\kinsol\kinsol_band.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\sundials\src\kinsol\kinsol_bbdpre.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\sundials\src\kinsol\kinsol_dense.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\sundials\src\kinsol\kinsol_io.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\sundials\src\kinsol\kinsol_spbcgs.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\sundials\src\kinsol\kinsol_spgmr.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\sundials\src\kinsol\kinsol_spils.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\sundials\src\kinsol\kinsol_sptfqmr.c">
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Header Files"
|
||||
Filter="h;hpp;hxx;hm;inl;inc;xsd"
|
||||
UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}">
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\sundials\src\kinsol\kinsol_band_impl.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\sundials\src\kinsol\kinsol_bbdpre_impl.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\sundials\src\kinsol\kinsol_dense_impl.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\sundials\src\kinsol\kinsol_impl.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\sundials\src\kinsol\kinsol_spils_impl.h">
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Resource Files"
|
||||
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
||||
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}">
|
||||
</Filter>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
125
win32/vc7/Sundials/NVEC_SER/NVEC_SER.vcproj
Normal file
125
win32/vc7/Sundials/NVEC_SER/NVEC_SER.vcproj
Normal file
|
|
@ -0,0 +1,125 @@
|
|||
<?xml version="1.0" encoding="Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="7.10"
|
||||
Name="NVEC_SER"
|
||||
ProjectGUID="{D1FA7E59-712E-4CC0-ACCA-85F6E41C1C81}"
|
||||
Keyword="Win32Proj">
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"/>
|
||||
</Platforms>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="Debug"
|
||||
IntermediateDirectory="Debug"
|
||||
ConfigurationType="4"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="0"
|
||||
AdditionalIncludeDirectories="../../../../../sundials/include;.."
|
||||
PreprocessorDefinitions="WIN32;_DEBUG;_LIB"
|
||||
MinimalRebuild="TRUE"
|
||||
BasicRuntimeChecks="3"
|
||||
RuntimeLibrary="5"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
Detect64BitPortabilityProblems="TRUE"
|
||||
DebugInformationFormat="4"/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="$(OutDir)/NVEC_SER.lib"/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="Release"
|
||||
IntermediateDirectory="Release"
|
||||
ConfigurationType="4"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalIncludeDirectories="../../../../../sundials/include;.."
|
||||
PreprocessorDefinitions="WIN32;NDEBUG;_LIB"
|
||||
RuntimeLibrary="2"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
Detect64BitPortabilityProblems="TRUE"
|
||||
DebugInformationFormat="3"/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="$(OutDir)/NVEC_SER.lib"/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<References>
|
||||
</References>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
||||
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}">
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\sundials\src\nvec_ser\fnvector_serial.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\sundials\src\nvec_ser\nvector_serial.c">
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Header Files"
|
||||
Filter="h;hpp;hxx;hm;inl;inc;xsd"
|
||||
UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}">
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\sundials\src\nvec_ser\fnvector_serial.h">
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Resource Files"
|
||||
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
||||
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}">
|
||||
</Filter>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
149
win32/vc7/Sundials/SUNDIALS_SHARED/SUNDIALS_SHARED.vcproj
Normal file
149
win32/vc7/Sundials/SUNDIALS_SHARED/SUNDIALS_SHARED.vcproj
Normal file
|
|
@ -0,0 +1,149 @@
|
|||
<?xml version="1.0" encoding="Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="7.10"
|
||||
Name="SUNDIALS_SHARED"
|
||||
ProjectGUID="{FCF87E3E-B8A7-47CA-864E-87E0166CCD79}"
|
||||
Keyword="Win32Proj">
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"/>
|
||||
</Platforms>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="Debug"
|
||||
IntermediateDirectory="Debug"
|
||||
ConfigurationType="4"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="0"
|
||||
AdditionalIncludeDirectories="../../../../../sundials/include;.."
|
||||
PreprocessorDefinitions="WIN32;_DEBUG;_LIB"
|
||||
MinimalRebuild="TRUE"
|
||||
BasicRuntimeChecks="3"
|
||||
RuntimeLibrary="5"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
Detect64BitPortabilityProblems="TRUE"
|
||||
DebugInformationFormat="4"/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="$(OutDir)/SUNDIALS_SHARED.lib"/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="Release"
|
||||
IntermediateDirectory="Release"
|
||||
ConfigurationType="4"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalIncludeDirectories="../../../../../sundials/include;.."
|
||||
PreprocessorDefinitions="WIN32;NDEBUG;_LIB"
|
||||
RuntimeLibrary="2"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
Detect64BitPortabilityProblems="TRUE"
|
||||
DebugInformationFormat="3"/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="$(OutDir)/SUNDIALS_SHARED.lib"/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<References>
|
||||
</References>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
||||
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}">
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\sundials\src\sundials\sundials_band.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\sundials\src\sundials\sundials_dense.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\sundials\src\sundials\sundials_iterative.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\sundials\src\sundials\sundials_math.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\sundials\src\sundials\sundials_nvector.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\sundials\src\sundials\sundials_smalldense.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\sundials\src\sundials\sundials_spbcgs.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\sundials\src\sundials\sundials_spgmr.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\sundials\src\sundials\sundials_sptfqmr.c">
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Header Files"
|
||||
Filter="h;hpp;hxx;hm;inl;inc;xsd"
|
||||
UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}">
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\sundials\src\sundials\sundials_config.h">
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Resource Files"
|
||||
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
||||
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}">
|
||||
</Filter>
|
||||
<File
|
||||
RelativePath=".\ReadMe.txt">
|
||||
</File>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
37
win32/vc7/Sundials/sundials/sundials_config.h
Normal file
37
win32/vc7/Sundials/sundials/sundials_config.h
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
/*
|
||||
* -----------------------------------------------------------------
|
||||
* $Revision: 1.1 $
|
||||
* $Date: 2006/11/13 19:46:18 $
|
||||
* -----------------------------------------------------------------
|
||||
* Programmer(s): Aaron Collier @ LLNL
|
||||
* -----------------------------------------------------------------
|
||||
* Copyright (c) 2005, The Regents of the University of California.
|
||||
* Produced at the Lawrence Livermore National Laboratory.
|
||||
* All rights reserved.
|
||||
* For details, see sundials/shared/LICENSE.
|
||||
*------------------------------------------------------------------
|
||||
* SUNDIALS configuration header file
|
||||
*------------------------------------------------------------------
|
||||
*/
|
||||
|
||||
/* Define SUNDIALS version number */
|
||||
#define SUNDIALS_PACKAGE_VERSION "2.2.0"
|
||||
|
||||
/* FCMIX: Define Fortran name-mangling macro */
|
||||
#define F77_FUNC(name,NAME) name ## _
|
||||
#define F77_FUNC_(name,NAME) name ## _
|
||||
|
||||
/* FCMIX: Define case of function names */
|
||||
|
||||
|
||||
/* FCMIX: Define number of underscores to append to function names */
|
||||
|
||||
|
||||
/* Define precision of SUNDIALS data type 'realtype' */
|
||||
#define SUNDIALS_DOUBLE_PRECISION 1
|
||||
|
||||
/* Use generic math functions */
|
||||
#define SUNDIALS_USE_GENERIC_MATH 1
|
||||
|
||||
/* FNVECTOR: Allow user to specify different MPI communicator */
|
||||
#define SUNDIALS_MPI_COMM_F2C 0
|
||||
2
win32/vc7/base/.cvsignore
Normal file
2
win32/vc7/base/.cvsignore
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
Debug
|
||||
Release
|
||||
186
win32/vc7/base/base.vcproj
Executable file
186
win32/vc7/base/base.vcproj
Executable file
|
|
@ -0,0 +1,186 @@
|
|||
<?xml version="1.0" encoding="Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="7.10"
|
||||
Name="base"
|
||||
ProjectGUID="{4D98F045-AD21-4286-9BCD-5A071E732BFA}"
|
||||
RootNamespace="base"
|
||||
Keyword="ManagedCProj">
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"/>
|
||||
</Platforms>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="../../../build/lib/i686-pc-win32d"
|
||||
IntermediateDirectory="$(ConfigurationName)"
|
||||
ConfigurationType="4"
|
||||
CharacterSet="2"
|
||||
ManagedExtensions="TRUE">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="0"
|
||||
PreprocessorDefinitions="WIN32;_DEBUG"
|
||||
MinimalRebuild="FALSE"
|
||||
BasicRuntimeChecks="0"
|
||||
RuntimeLibrary="1"
|
||||
WarningLevel="3"
|
||||
DebugInformationFormat="3"/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="$(SolutionDir)$(ConfigurationName)"
|
||||
IntermediateDirectory="$(ConfigurationName)"
|
||||
ConfigurationType="1"
|
||||
CharacterSet="2"
|
||||
ManagedExtensions="TRUE">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
PreprocessorDefinitions="WIN32;NDEBUG"
|
||||
MinimalRebuild="FALSE"
|
||||
RuntimeLibrary="0"
|
||||
WarningLevel="3"
|
||||
DebugInformationFormat="3"/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
OutputFile="$(OutDir)\$(ProjectName).exe"
|
||||
LinkIncremental="1"
|
||||
GenerateDebugInformation="TRUE"/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCWebDeploymentTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<References>
|
||||
</References>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
||||
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}">
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\base\clockWC.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\base\ct2ctml.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\base\ctml.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\base\misc.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\base\plots.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\base\stringUtils.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\base\xml.cpp">
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Header Files"
|
||||
Filter="h;hpp;hxx;hm;inl;inc;xsd"
|
||||
UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}">
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\base\Array.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\base\clockWC.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\base\config.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\base\ct_defs.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\base\ctexceptions.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\base\ctml.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\base\FactoryBase.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\base\global.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\base\logger.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\base\plots.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\base\stringUtils.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\base\units.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\base\utilities.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\base\vec_functions.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\base\xml.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\base\XML_Writer.h">
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Resource Files"
|
||||
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
||||
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}">
|
||||
</Filter>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
207
win32/vc7/cantera.sln
Executable file
207
win32/vc7/cantera.sln
Executable file
|
|
@ -0,0 +1,207 @@
|
|||
Microsoft Visual Studio Solution File, Format Version 8.00
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "oneD", "oneD\oneD.vcproj", "{AFF4EF88-C100-4297-A150-B6C4C5A98F25}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cantera", "cantera\cantera.vcproj", "{E719804C-1351-4C44-BD5E-611AF464CD20}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{5DAFF608-0007-4EA3-AC5D-F573B77FA61C} = {5DAFF608-0007-4EA3-AC5D-F573B77FA61C}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "transport", "transport\transport.vcproj", "{0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "zeroD", "zeroD\zeroD.vcproj", "{9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "converters", "converters\converters.vcproj", "{5D8C2EA9-A90C-48A7-A541-180332B941DD}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "tpx", "tpx\tpx.vcproj", "{A5DEA71E-15B1-4C59-94A8-01856D6E1F33}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "f2c_blas", "f2c_blas\f2c_blas.vcproj", "{5D8EADA5-2E37-4311-AD07-605A0B21F577}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "f2c_lapack", "f2c_lapack\f2c_lapack.vcproj", "{2701B198-FEC1-45A8-BC20-AACA46B64986}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ctcxx", "cxxutils\cxxutils.vcproj", "{E342202C-F877-43D0-8E66-D2A7794AC900}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "clib", "clib\clib.vcproj", "{C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{A5DEA71E-15B1-4C59-94A8-01856D6E1F33} = {A5DEA71E-15B1-4C59-94A8-01856D6E1F33}
|
||||
{FCF87E3E-B8A7-47CA-864E-87E0166CCD79} = {FCF87E3E-B8A7-47CA-864E-87E0166CCD79}
|
||||
{E719804C-1351-4C44-BD5E-611AF464CD20} = {E719804C-1351-4C44-BD5E-611AF464CD20}
|
||||
{0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D} = {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}
|
||||
{D1FA7E59-712E-4CC0-ACCA-85F6E41C1C81} = {D1FA7E59-712E-4CC0-ACCA-85F6E41C1C81}
|
||||
{AFF4EF88-C100-4297-A150-B6C4C5A98F25} = {AFF4EF88-C100-4297-A150-B6C4C5A98F25}
|
||||
{2701B198-FEC1-45A8-BC20-AACA46B64986} = {2701B198-FEC1-45A8-BC20-AACA46B64986}
|
||||
{12D156A1-1BF6-42DF-8572-416AC1E9FC03} = {12D156A1-1BF6-42DF-8572-416AC1E9FC03}
|
||||
{5D8EADA5-2E37-4311-AD07-605A0B21F577} = {5D8EADA5-2E37-4311-AD07-605A0B21F577}
|
||||
{5D8C2EA9-A90C-48A7-A541-180332B941DD} = {5D8C2EA9-A90C-48A7-A541-180332B941DD}
|
||||
{DD55E1AC-451C-422C-92BC-26E3F7AA137B} = {DD55E1AC-451C-422C-92BC-26E3F7AA137B}
|
||||
{127547E3-416C-4C12-82E9-52F912142FB5} = {127547E3-416C-4C12-82E9-52F912142FB5}
|
||||
{9F1F6CE5-F388-4002-AD06-E1E0DB90CABD} = {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ck2cti", "ck2cti\ck2cti.vcproj", "{B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{A5DEA71E-15B1-4C59-94A8-01856D6E1F33} = {A5DEA71E-15B1-4C59-94A8-01856D6E1F33}
|
||||
{E342202C-F877-43D0-8E66-D2A7794AC900} = {E342202C-F877-43D0-8E66-D2A7794AC900}
|
||||
{E719804C-1351-4C44-BD5E-611AF464CD20} = {E719804C-1351-4C44-BD5E-611AF464CD20}
|
||||
{5D8C2EA9-A90C-48A7-A541-180332B941DD} = {5D8C2EA9-A90C-48A7-A541-180332B941DD}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "f2c_libs", "f2c_libs\f2c_libs.vcproj", "{DD55E1AC-451C-422C-92BC-26E3F7AA137B}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{5DAFF608-0007-4EA3-AC5D-F573B77FA61C} = {5DAFF608-0007-4EA3-AC5D-F573B77FA61C}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "f2c_math", "f2c_math\f2c_math.vcproj", "{127547E3-416C-4C12-82E9-52F912142FB5}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ctpython", "ctpython\ctpython.vcproj", "{ED939A01-860D-4E92-A892-E195CB311AB7}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{C885FEF3-86E5-47C2-8E39-E2A8F251EA8C} = {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{54435603-DBB4-11D2-8724-00A0C9A8B90C}") = "SetupCantera", "SetupCantera\SetupCantera.vdproj", "{AB8F959E-9DD3-47F3-8DAA-98BC12927A79}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ctmatlab", "ctmatlab\ctmatlab.vcproj", "{92D13C3B-610D-4AD6-BB4D-DDA9E74EBD14}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{C885FEF3-86E5-47C2-8E39-E2A8F251EA8C} = {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "config_h", "config_h\config_h.vcproj", "{5DAFF608-0007-4EA3-AC5D-F573B77FA61C}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "NVEC_SER", "Sundials\NVEC_SER\NVEC_SER.vcproj", "{D1FA7E59-712E-4CC0-ACCA-85F6E41C1C81}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SUNDIALS_SHARED", "Sundials\SUNDIALS_SHARED\SUNDIALS_SHARED.vcproj", "{FCF87E3E-B8A7-47CA-864E-87E0166CCD79}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "CVODES", "Sundials\CVODES\CVODES.vcproj", "{12D156A1-1BF6-42DF-8572-416AC1E9FC03}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{54435603-DBB4-11D2-8724-00A0C9A8B90C}") = "SetupCanteraLite", "SetupCantera\SetupCanteraLite.vdproj", "{6F530573-5D0C-4FEC-AB81-70FE059BDE5D}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "base", "base\base.vcproj", "{4D98F045-AD21-4286-9BCD-5A071E732BFA}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfiguration) = preSolution
|
||||
Debug = Debug
|
||||
Release = Release
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfiguration) = postSolution
|
||||
{AFF4EF88-C100-4297-A150-B6C4C5A98F25}.Debug.ActiveCfg = Debug|Win32
|
||||
{AFF4EF88-C100-4297-A150-B6C4C5A98F25}.Debug.Build.0 = Debug|Win32
|
||||
{AFF4EF88-C100-4297-A150-B6C4C5A98F25}.Release.ActiveCfg = Release|Win32
|
||||
{AFF4EF88-C100-4297-A150-B6C4C5A98F25}.Release.Build.0 = Release|Win32
|
||||
{E719804C-1351-4C44-BD5E-611AF464CD20}.Debug.ActiveCfg = Debug|Win32
|
||||
{E719804C-1351-4C44-BD5E-611AF464CD20}.Debug.Build.0 = Debug|Win32
|
||||
{E719804C-1351-4C44-BD5E-611AF464CD20}.Release.ActiveCfg = Release|Win32
|
||||
{E719804C-1351-4C44-BD5E-611AF464CD20}.Release.Build.0 = Release|Win32
|
||||
{0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}.Debug.ActiveCfg = Debug|Win32
|
||||
{0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}.Debug.Build.0 = Debug|Win32
|
||||
{0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}.Release.ActiveCfg = Release|Win32
|
||||
{0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}.Release.Build.0 = Release|Win32
|
||||
{9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}.Debug.ActiveCfg = Debug|Win32
|
||||
{9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}.Debug.Build.0 = Debug|Win32
|
||||
{9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}.Release.ActiveCfg = Release|Win32
|
||||
{9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}.Release.Build.0 = Release|Win32
|
||||
{5D8C2EA9-A90C-48A7-A541-180332B941DD}.Debug.ActiveCfg = Debug|Win32
|
||||
{5D8C2EA9-A90C-48A7-A541-180332B941DD}.Debug.Build.0 = Debug|Win32
|
||||
{5D8C2EA9-A90C-48A7-A541-180332B941DD}.Release.ActiveCfg = Release|Win32
|
||||
{5D8C2EA9-A90C-48A7-A541-180332B941DD}.Release.Build.0 = Release|Win32
|
||||
{A5DEA71E-15B1-4C59-94A8-01856D6E1F33}.Debug.ActiveCfg = Debug|Win32
|
||||
{A5DEA71E-15B1-4C59-94A8-01856D6E1F33}.Debug.Build.0 = Debug|Win32
|
||||
{A5DEA71E-15B1-4C59-94A8-01856D6E1F33}.Release.ActiveCfg = Release|Win32
|
||||
{A5DEA71E-15B1-4C59-94A8-01856D6E1F33}.Release.Build.0 = Release|Win32
|
||||
{5D8EADA5-2E37-4311-AD07-605A0B21F577}.Debug.ActiveCfg = Debug|Win32
|
||||
{5D8EADA5-2E37-4311-AD07-605A0B21F577}.Debug.Build.0 = Debug|Win32
|
||||
{5D8EADA5-2E37-4311-AD07-605A0B21F577}.Release.ActiveCfg = Release|Win32
|
||||
{5D8EADA5-2E37-4311-AD07-605A0B21F577}.Release.Build.0 = Release|Win32
|
||||
{2701B198-FEC1-45A8-BC20-AACA46B64986}.Debug.ActiveCfg = Debug|Win32
|
||||
{2701B198-FEC1-45A8-BC20-AACA46B64986}.Debug.Build.0 = Debug|Win32
|
||||
{2701B198-FEC1-45A8-BC20-AACA46B64986}.Release.ActiveCfg = Release|Win32
|
||||
{2701B198-FEC1-45A8-BC20-AACA46B64986}.Release.Build.0 = Release|Win32
|
||||
{E342202C-F877-43D0-8E66-D2A7794AC900}.Debug.ActiveCfg = Debug|Win32
|
||||
{E342202C-F877-43D0-8E66-D2A7794AC900}.Debug.Build.0 = Debug|Win32
|
||||
{E342202C-F877-43D0-8E66-D2A7794AC900}.Release.ActiveCfg = Release|Win32
|
||||
{E342202C-F877-43D0-8E66-D2A7794AC900}.Release.Build.0 = Release|Win32
|
||||
{C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}.Debug.ActiveCfg = Debug|Win32
|
||||
{C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}.Debug.Build.0 = Debug|Win32
|
||||
{C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}.Release.ActiveCfg = Release|Win32
|
||||
{C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}.Release.Build.0 = Release|Win32
|
||||
{B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}.Debug.ActiveCfg = Debug|Win32
|
||||
{B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}.Debug.Build.0 = Debug|Win32
|
||||
{B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}.Release.ActiveCfg = Release|Win32
|
||||
{B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}.Release.Build.0 = Release|Win32
|
||||
{DD55E1AC-451C-422C-92BC-26E3F7AA137B}.Debug.ActiveCfg = Debug|Win32
|
||||
{DD55E1AC-451C-422C-92BC-26E3F7AA137B}.Debug.Build.0 = Debug|Win32
|
||||
{DD55E1AC-451C-422C-92BC-26E3F7AA137B}.Release.ActiveCfg = Release|Win32
|
||||
{DD55E1AC-451C-422C-92BC-26E3F7AA137B}.Release.Build.0 = Release|Win32
|
||||
{127547E3-416C-4C12-82E9-52F912142FB5}.Debug.ActiveCfg = Debug|Win32
|
||||
{127547E3-416C-4C12-82E9-52F912142FB5}.Debug.Build.0 = Debug|Win32
|
||||
{127547E3-416C-4C12-82E9-52F912142FB5}.Release.ActiveCfg = Release|Win32
|
||||
{127547E3-416C-4C12-82E9-52F912142FB5}.Release.Build.0 = Release|Win32
|
||||
{ED939A01-860D-4E92-A892-E195CB311AB7}.Debug.ActiveCfg = Debug|Win32
|
||||
{ED939A01-860D-4E92-A892-E195CB311AB7}.Debug.Build.0 = Debug|Win32
|
||||
{ED939A01-860D-4E92-A892-E195CB311AB7}.Release.ActiveCfg = Release|Win32
|
||||
{ED939A01-860D-4E92-A892-E195CB311AB7}.Release.Build.0 = Release|Win32
|
||||
{AB8F959E-9DD3-47F3-8DAA-98BC12927A79}.Debug.ActiveCfg = Debug
|
||||
{AB8F959E-9DD3-47F3-8DAA-98BC12927A79}.Release.ActiveCfg = Release
|
||||
{92D13C3B-610D-4AD6-BB4D-DDA9E74EBD14}.Debug.ActiveCfg = Debug|Win32
|
||||
{92D13C3B-610D-4AD6-BB4D-DDA9E74EBD14}.Debug.Build.0 = Debug|Win32
|
||||
{92D13C3B-610D-4AD6-BB4D-DDA9E74EBD14}.Release.ActiveCfg = Release|Win32
|
||||
{92D13C3B-610D-4AD6-BB4D-DDA9E74EBD14}.Release.Build.0 = Release|Win32
|
||||
{5DAFF608-0007-4EA3-AC5D-F573B77FA61C}.Debug.ActiveCfg = Debug|Win32
|
||||
{5DAFF608-0007-4EA3-AC5D-F573B77FA61C}.Debug.Build.0 = Debug|Win32
|
||||
{5DAFF608-0007-4EA3-AC5D-F573B77FA61C}.Release.ActiveCfg = Release|Win32
|
||||
{5DAFF608-0007-4EA3-AC5D-F573B77FA61C}.Release.Build.0 = Release|Win32
|
||||
{D1FA7E59-712E-4CC0-ACCA-85F6E41C1C81}.Debug.ActiveCfg = Debug|Win32
|
||||
{D1FA7E59-712E-4CC0-ACCA-85F6E41C1C81}.Debug.Build.0 = Debug|Win32
|
||||
{D1FA7E59-712E-4CC0-ACCA-85F6E41C1C81}.Release.ActiveCfg = Release|Win32
|
||||
{D1FA7E59-712E-4CC0-ACCA-85F6E41C1C81}.Release.Build.0 = Release|Win32
|
||||
{FCF87E3E-B8A7-47CA-864E-87E0166CCD79}.Debug.ActiveCfg = Debug|Win32
|
||||
{FCF87E3E-B8A7-47CA-864E-87E0166CCD79}.Debug.Build.0 = Debug|Win32
|
||||
{FCF87E3E-B8A7-47CA-864E-87E0166CCD79}.Release.ActiveCfg = Release|Win32
|
||||
{FCF87E3E-B8A7-47CA-864E-87E0166CCD79}.Release.Build.0 = Release|Win32
|
||||
{12D156A1-1BF6-42DF-8572-416AC1E9FC03}.Debug.ActiveCfg = Debug|Win32
|
||||
{12D156A1-1BF6-42DF-8572-416AC1E9FC03}.Debug.Build.0 = Debug|Win32
|
||||
{12D156A1-1BF6-42DF-8572-416AC1E9FC03}.Release.ActiveCfg = Release|Win32
|
||||
{12D156A1-1BF6-42DF-8572-416AC1E9FC03}.Release.Build.0 = Release|Win32
|
||||
{6F530573-5D0C-4FEC-AB81-70FE059BDE5D}.Debug.ActiveCfg = Debug
|
||||
{6F530573-5D0C-4FEC-AB81-70FE059BDE5D}.Debug.Build.0 = Debug
|
||||
{6F530573-5D0C-4FEC-AB81-70FE059BDE5D}.Release.ActiveCfg = Release
|
||||
{4D98F045-AD21-4286-9BCD-5A071E732BFA}.Debug.ActiveCfg = Debug|Win32
|
||||
{4D98F045-AD21-4286-9BCD-5A071E732BFA}.Debug.Build.0 = Debug|Win32
|
||||
{4D98F045-AD21-4286-9BCD-5A071E732BFA}.Release.ActiveCfg = Release|Win32
|
||||
{4D98F045-AD21-4286-9BCD-5A071E732BFA}.Release.Build.0 = Release|Win32
|
||||
EndGlobalSection
|
||||
GlobalSection(ExtensibilityGlobals) = postSolution
|
||||
EndGlobalSection
|
||||
GlobalSection(ExtensibilityAddIns) = postSolution
|
||||
EndGlobalSection
|
||||
EndGlobal
|
||||
2
win32/vc7/cantera/.cvsignore
Normal file
2
win32/vc7/cantera/.cvsignore
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
Debug
|
||||
ReadMe.txt
|
||||
530
win32/vc7/cantera/cantera.vcproj
Executable file
530
win32/vc7/cantera/cantera.vcproj
Executable file
|
|
@ -0,0 +1,530 @@
|
|||
<?xml version="1.0" encoding="Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="7.10"
|
||||
Name="cantera"
|
||||
ProjectGUID="{E719804C-1351-4C44-BD5E-611AF464CD20}"
|
||||
Keyword="Win32Proj">
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"/>
|
||||
</Platforms>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="../../../build/lib/i686-pc-win32d"
|
||||
IntermediateDirectory="Debug"
|
||||
ConfigurationType="4"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="0"
|
||||
AdditionalIncludeDirectories="../../../../sundials/include;../Sundials"
|
||||
PreprocessorDefinitions="WIN32;_DEBUG;_LIB;DEBUG_HKM"
|
||||
MinimalRebuild="FALSE"
|
||||
BasicRuntimeChecks="3"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
Detect64BitPortabilityProblems="TRUE"
|
||||
DebugInformationFormat="4"/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="$(OutDir)/cantera.lib"
|
||||
IgnoreAllDefaultLibraries="TRUE"/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="../../../build/lib/i686-pc-win32"
|
||||
IntermediateDirectory="Release"
|
||||
ConfigurationType="4"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="3"
|
||||
GlobalOptimizations="TRUE"
|
||||
FavorSizeOrSpeed="0"
|
||||
AdditionalIncludeDirectories="../../../../sundials/include;../Sundials"
|
||||
PreprocessorDefinitions="WIN32;NDEBUG;_LIB"
|
||||
StringPooling="TRUE"
|
||||
RuntimeLibrary="2"
|
||||
UsePrecompiledHeader="2"
|
||||
WarningLevel="3"
|
||||
Detect64BitPortabilityProblems="TRUE"
|
||||
DebugInformationFormat="0"/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="$(OutDir)/cantera.lib"/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<References>
|
||||
</References>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
||||
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}">
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\BandMatrix.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\BasisOptimize.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\ChemEquil.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\ConstCpPoly.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\ConstDensityThermo.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\Constituents.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\ct2ctml.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\ctml.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\ctvector.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\DAE_solvers.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\DenseMatrix.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\oneD\Domain1D.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\EdgeKinetics.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\Elements.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\equilibrate.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\FalloffFactory.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\zeroD\FlowReactor.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\funcs.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\GasKinetics.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\GeneralSpeciesThermo.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\GRI_30_Kinetics.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\Group.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\IdealGasPhase.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\ImplicitSurfChem.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\importCTML.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\InterfaceKinetics.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\Kinetics.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\KineticsFactory.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\LatticePhase.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\LatticeSolidPhase.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\misc.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\Mu0Poly.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\MultiPhase.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\MultiPhaseEquil.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\ODE_integrators.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\Phase.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\phasereport.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\plots.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\PureFluidPhase.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\ReactionPath.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\ReactionStoichMgr.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\sort.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\SpeciesThermoFactory.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\State.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\StoichSubstance.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\stringUtils.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\SurfPhase.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\ThermoFactory.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\ThermoPhase.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\xml.cpp">
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Header Files"
|
||||
Filter="h;hpp;hxx;hm;inl;inc;xsd"
|
||||
UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}">
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\Array.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\ArrayViewer.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\BandMatrix.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\ChemEquil.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\config.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\ConstCpPoly.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\ConstDensityThermo.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\Constituents.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\ct_defs.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\ctexceptions.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\ctlapack.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\ctml.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\ctvector.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\CVode.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\CVodesIntegrator.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\DAE_Solver.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\DenseMatrix.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\diagnostics.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\EdgeKinetics.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\EdgePhase.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\Elements.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\Enhanced3BConc.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\equil.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\FalloffFactory.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\FalloffMgr.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\zeroD\FlowReactor.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\Func1.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\FuncEval.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\funcs.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\GasKinetics.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\GasKineticsWriter.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\GeneralSpeciesThermo.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\global.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\GRI_30_Kinetics.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\Group.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\IdealGasPhase.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\ImplicitSurfChem.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\importCTML.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\IncompressibleThermo.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\Integrator.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\InterfaceKinetics.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\Kinetics.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\KineticsFactory.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\lapack.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\LatticePhase.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\LatticeSolidPhase.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\MetalPhase.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\mix_defs.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\Mu0Poly.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\MultiPhase.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\MultiPhaseEquil.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\NasaPoly1.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\NasaThermo.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\Phase.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\plots.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\polyfit.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\PropertyCalculator.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\PureFluidPhase.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\RateCoeffMgr.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\reaction_defs.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\ReactionData.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\ReactionPath.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\ReactionStoichMgr.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\recipes.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\RxnRates.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\ShomatePoly.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\ShomateThermo.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\SimpleThermo.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\sort.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\SpeciesThermo.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\SpeciesThermoFactory.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\SpeciesThermoMgr.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\speciesThermoTypes.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\State.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\StoichManager.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\StoichSubstance.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\stringUtils.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\SurfPhase.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\ThermoFactory.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\ThermoPhase.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\ThirdBodyMgr.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\units.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\utilities.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\vec_functions.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\xml.h">
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Resource Files"
|
||||
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
||||
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}">
|
||||
</Filter>
|
||||
<File
|
||||
RelativePath=".\ReadMe.txt">
|
||||
</File>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
69
win32/vc7/cantera_examples.sln
Executable file
69
win32/vc7/cantera_examples.sln
Executable file
|
|
@ -0,0 +1,69 @@
|
|||
Microsoft Visual Studio Solution File, Format Version 8.00
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ck2cti", "ck2cti\ck2cti.vcproj", "{B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cti2ctml", "cti2ctml\cti2ctml.vcproj", "{4F5B4442-98E5-4B11-9239-CDF5148C1902}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "diamondSurf", "diamondSurf\diamondSurf.vcproj", "{D600ECB2-D432-4E4D-9D70-BF94AEF31485}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "silane_equil", "silane_equil\silane_equil.vcproj", "{290DC5E5-0016-4CCF-84D5-6B997DD3664A}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "surfkin", "surfkin\surfkin.vcproj", "{7A87791C-32F6-48B5-ADBB-A8E77DE13E16}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cxx_examples", "cxx_examples\cxx_examples.vcproj", "{0E635864-A310-4468-9D97-9CE67B078C97}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "csvdiff", "csvdiff\csvdiff.vcproj", "{AF888A7A-C325-4312-9BE0-CDA1B1E540E9}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfiguration) = preSolution
|
||||
Debug = Debug
|
||||
Release = Release
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfiguration) = postSolution
|
||||
{B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}.Debug.ActiveCfg = Debug|Win32
|
||||
{B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}.Debug.Build.0 = Debug|Win32
|
||||
{B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}.Release.ActiveCfg = Release|Win32
|
||||
{B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}.Release.Build.0 = Release|Win32
|
||||
{4F5B4442-98E5-4B11-9239-CDF5148C1902}.Debug.ActiveCfg = Debug|Win32
|
||||
{4F5B4442-98E5-4B11-9239-CDF5148C1902}.Debug.Build.0 = Debug|Win32
|
||||
{4F5B4442-98E5-4B11-9239-CDF5148C1902}.Release.ActiveCfg = Release|Win32
|
||||
{4F5B4442-98E5-4B11-9239-CDF5148C1902}.Release.Build.0 = Release|Win32
|
||||
{D600ECB2-D432-4E4D-9D70-BF94AEF31485}.Debug.ActiveCfg = Debug|Win32
|
||||
{D600ECB2-D432-4E4D-9D70-BF94AEF31485}.Debug.Build.0 = Debug|Win32
|
||||
{D600ECB2-D432-4E4D-9D70-BF94AEF31485}.Release.ActiveCfg = Release|Win32
|
||||
{D600ECB2-D432-4E4D-9D70-BF94AEF31485}.Release.Build.0 = Release|Win32
|
||||
{290DC5E5-0016-4CCF-84D5-6B997DD3664A}.Debug.ActiveCfg = Debug|Win32
|
||||
{290DC5E5-0016-4CCF-84D5-6B997DD3664A}.Debug.Build.0 = Debug|Win32
|
||||
{290DC5E5-0016-4CCF-84D5-6B997DD3664A}.Release.ActiveCfg = Release|Win32
|
||||
{290DC5E5-0016-4CCF-84D5-6B997DD3664A}.Release.Build.0 = Release|Win32
|
||||
{7A87791C-32F6-48B5-ADBB-A8E77DE13E16}.Debug.ActiveCfg = Debug|Win32
|
||||
{7A87791C-32F6-48B5-ADBB-A8E77DE13E16}.Debug.Build.0 = Debug|Win32
|
||||
{7A87791C-32F6-48B5-ADBB-A8E77DE13E16}.Release.ActiveCfg = Release|Win32
|
||||
{7A87791C-32F6-48B5-ADBB-A8E77DE13E16}.Release.Build.0 = Release|Win32
|
||||
{0E635864-A310-4468-9D97-9CE67B078C97}.Debug.ActiveCfg = Debug|Win32
|
||||
{0E635864-A310-4468-9D97-9CE67B078C97}.Debug.Build.0 = Debug|Win32
|
||||
{0E635864-A310-4468-9D97-9CE67B078C97}.Release.ActiveCfg = Release|Win32
|
||||
{0E635864-A310-4468-9D97-9CE67B078C97}.Release.Build.0 = Release|Win32
|
||||
{AF888A7A-C325-4312-9BE0-CDA1B1E540E9}.Debug.ActiveCfg = Debug|Win32
|
||||
{AF888A7A-C325-4312-9BE0-CDA1B1E540E9}.Debug.Build.0 = Debug|Win32
|
||||
{AF888A7A-C325-4312-9BE0-CDA1B1E540E9}.Release.ActiveCfg = Release|Win32
|
||||
{AF888A7A-C325-4312-9BE0-CDA1B1E540E9}.Release.Build.0 = Release|Win32
|
||||
EndGlobalSection
|
||||
GlobalSection(ExtensibilityGlobals) = postSolution
|
||||
EndGlobalSection
|
||||
GlobalSection(ExtensibilityAddIns) = postSolution
|
||||
EndGlobalSection
|
||||
EndGlobal
|
||||
180
win32/vc7/cantera_no_sundials.sln
Executable file
180
win32/vc7/cantera_no_sundials.sln
Executable file
|
|
@ -0,0 +1,180 @@
|
|||
Microsoft Visual Studio Solution File, Format Version 8.00
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cvode", "cvode\cvode.vcproj", "{9BEC323F-1492-4AF0-8081-F8E3761D9FFC}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "oneD", "oneD\oneD.vcproj", "{AFF4EF88-C100-4297-A150-B6C4C5A98F25}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cantera", "cantera\cantera.vcproj", "{E719804C-1351-4C44-BD5E-611AF464CD20}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{5DAFF608-0007-4EA3-AC5D-F573B77FA61C} = {5DAFF608-0007-4EA3-AC5D-F573B77FA61C}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "transport", "transport\transport.vcproj", "{0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "zeroD", "zeroD\zeroD.vcproj", "{9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "converters", "converters\converters.vcproj", "{5D8C2EA9-A90C-48A7-A541-180332B941DD}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "tpx", "tpx\tpx.vcproj", "{A5DEA71E-15B1-4C59-94A8-01856D6E1F33}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "f2c_blas", "f2c_blas\f2c_blas.vcproj", "{5D8EADA5-2E37-4311-AD07-605A0B21F577}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "f2c_lapack", "f2c_lapack\f2c_lapack.vcproj", "{2701B198-FEC1-45A8-BC20-AACA46B64986}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ctcxx", "cxxutils\cxxutils.vcproj", "{E342202C-F877-43D0-8E66-D2A7794AC900}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "clib", "clib\clib.vcproj", "{C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{A5DEA71E-15B1-4C59-94A8-01856D6E1F33} = {A5DEA71E-15B1-4C59-94A8-01856D6E1F33}
|
||||
{9BEC323F-1492-4AF0-8081-F8E3761D9FFC} = {9BEC323F-1492-4AF0-8081-F8E3761D9FFC}
|
||||
{E719804C-1351-4C44-BD5E-611AF464CD20} = {E719804C-1351-4C44-BD5E-611AF464CD20}
|
||||
{0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D} = {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}
|
||||
{AFF4EF88-C100-4297-A150-B6C4C5A98F25} = {AFF4EF88-C100-4297-A150-B6C4C5A98F25}
|
||||
{2701B198-FEC1-45A8-BC20-AACA46B64986} = {2701B198-FEC1-45A8-BC20-AACA46B64986}
|
||||
{5D8EADA5-2E37-4311-AD07-605A0B21F577} = {5D8EADA5-2E37-4311-AD07-605A0B21F577}
|
||||
{5D8C2EA9-A90C-48A7-A541-180332B941DD} = {5D8C2EA9-A90C-48A7-A541-180332B941DD}
|
||||
{DD55E1AC-451C-422C-92BC-26E3F7AA137B} = {DD55E1AC-451C-422C-92BC-26E3F7AA137B}
|
||||
{127547E3-416C-4C12-82E9-52F912142FB5} = {127547E3-416C-4C12-82E9-52F912142FB5}
|
||||
{9F1F6CE5-F388-4002-AD06-E1E0DB90CABD} = {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ck2cti", "ck2cti\ck2cti.vcproj", "{B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{A5DEA71E-15B1-4C59-94A8-01856D6E1F33} = {A5DEA71E-15B1-4C59-94A8-01856D6E1F33}
|
||||
{E342202C-F877-43D0-8E66-D2A7794AC900} = {E342202C-F877-43D0-8E66-D2A7794AC900}
|
||||
{E719804C-1351-4C44-BD5E-611AF464CD20} = {E719804C-1351-4C44-BD5E-611AF464CD20}
|
||||
{5D8C2EA9-A90C-48A7-A541-180332B941DD} = {5D8C2EA9-A90C-48A7-A541-180332B941DD}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "f2c_libs", "f2c_libs\f2c_libs.vcproj", "{DD55E1AC-451C-422C-92BC-26E3F7AA137B}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{5DAFF608-0007-4EA3-AC5D-F573B77FA61C} = {5DAFF608-0007-4EA3-AC5D-F573B77FA61C}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "f2c_math", "f2c_math\f2c_math.vcproj", "{127547E3-416C-4C12-82E9-52F912142FB5}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ctpython", "ctpython\ctpython.vcproj", "{ED939A01-860D-4E92-A892-E195CB311AB7}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{C885FEF3-86E5-47C2-8E39-E2A8F251EA8C} = {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{54435603-DBB4-11D2-8724-00A0C9A8B90C}") = "SetupCantera", "SetupCantera\SetupCantera.vdproj", "{AB8F959E-9DD3-47F3-8DAA-98BC12927A79}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ctmatlab", "ctmatlab\ctmatlab.vcproj", "{92D13C3B-610D-4AD6-BB4D-DDA9E74EBD14}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{C885FEF3-86E5-47C2-8E39-E2A8F251EA8C} = {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "config_h", "config_h\config_h.vcproj", "{5DAFF608-0007-4EA3-AC5D-F573B77FA61C}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{54435603-DBB4-11D2-8724-00A0C9A8B90C}") = "SetupCanteraLite", "SetupCantera\SetupCanteraLite.vdproj", "{F7607AF2-705A-4046-B7EC-067DEE3BB79F}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfiguration) = preSolution
|
||||
Debug = Debug
|
||||
Release = Release
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfiguration) = postSolution
|
||||
{9BEC323F-1492-4AF0-8081-F8E3761D9FFC}.Debug.ActiveCfg = Debug|Win32
|
||||
{9BEC323F-1492-4AF0-8081-F8E3761D9FFC}.Debug.Build.0 = Debug|Win32
|
||||
{9BEC323F-1492-4AF0-8081-F8E3761D9FFC}.Release.ActiveCfg = Release|Win32
|
||||
{9BEC323F-1492-4AF0-8081-F8E3761D9FFC}.Release.Build.0 = Release|Win32
|
||||
{AFF4EF88-C100-4297-A150-B6C4C5A98F25}.Debug.ActiveCfg = Debug|Win32
|
||||
{AFF4EF88-C100-4297-A150-B6C4C5A98F25}.Debug.Build.0 = Debug|Win32
|
||||
{AFF4EF88-C100-4297-A150-B6C4C5A98F25}.Release.ActiveCfg = Release|Win32
|
||||
{AFF4EF88-C100-4297-A150-B6C4C5A98F25}.Release.Build.0 = Release|Win32
|
||||
{E719804C-1351-4C44-BD5E-611AF464CD20}.Debug.ActiveCfg = Debug|Win32
|
||||
{E719804C-1351-4C44-BD5E-611AF464CD20}.Debug.Build.0 = Debug|Win32
|
||||
{E719804C-1351-4C44-BD5E-611AF464CD20}.Release.ActiveCfg = Release|Win32
|
||||
{E719804C-1351-4C44-BD5E-611AF464CD20}.Release.Build.0 = Release|Win32
|
||||
{0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}.Debug.ActiveCfg = Debug|Win32
|
||||
{0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}.Debug.Build.0 = Debug|Win32
|
||||
{0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}.Release.ActiveCfg = Release|Win32
|
||||
{0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}.Release.Build.0 = Release|Win32
|
||||
{9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}.Debug.ActiveCfg = Debug|Win32
|
||||
{9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}.Debug.Build.0 = Debug|Win32
|
||||
{9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}.Release.ActiveCfg = Release|Win32
|
||||
{9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}.Release.Build.0 = Release|Win32
|
||||
{5D8C2EA9-A90C-48A7-A541-180332B941DD}.Debug.ActiveCfg = Debug|Win32
|
||||
{5D8C2EA9-A90C-48A7-A541-180332B941DD}.Debug.Build.0 = Debug|Win32
|
||||
{5D8C2EA9-A90C-48A7-A541-180332B941DD}.Release.ActiveCfg = Release|Win32
|
||||
{5D8C2EA9-A90C-48A7-A541-180332B941DD}.Release.Build.0 = Release|Win32
|
||||
{A5DEA71E-15B1-4C59-94A8-01856D6E1F33}.Debug.ActiveCfg = Debug|Win32
|
||||
{A5DEA71E-15B1-4C59-94A8-01856D6E1F33}.Debug.Build.0 = Debug|Win32
|
||||
{A5DEA71E-15B1-4C59-94A8-01856D6E1F33}.Release.ActiveCfg = Release|Win32
|
||||
{A5DEA71E-15B1-4C59-94A8-01856D6E1F33}.Release.Build.0 = Release|Win32
|
||||
{5D8EADA5-2E37-4311-AD07-605A0B21F577}.Debug.ActiveCfg = Debug|Win32
|
||||
{5D8EADA5-2E37-4311-AD07-605A0B21F577}.Debug.Build.0 = Debug|Win32
|
||||
{5D8EADA5-2E37-4311-AD07-605A0B21F577}.Release.ActiveCfg = Release|Win32
|
||||
{5D8EADA5-2E37-4311-AD07-605A0B21F577}.Release.Build.0 = Release|Win32
|
||||
{2701B198-FEC1-45A8-BC20-AACA46B64986}.Debug.ActiveCfg = Debug|Win32
|
||||
{2701B198-FEC1-45A8-BC20-AACA46B64986}.Debug.Build.0 = Debug|Win32
|
||||
{2701B198-FEC1-45A8-BC20-AACA46B64986}.Release.ActiveCfg = Release|Win32
|
||||
{2701B198-FEC1-45A8-BC20-AACA46B64986}.Release.Build.0 = Release|Win32
|
||||
{E342202C-F877-43D0-8E66-D2A7794AC900}.Debug.ActiveCfg = Debug|Win32
|
||||
{E342202C-F877-43D0-8E66-D2A7794AC900}.Debug.Build.0 = Debug|Win32
|
||||
{E342202C-F877-43D0-8E66-D2A7794AC900}.Release.ActiveCfg = Release|Win32
|
||||
{E342202C-F877-43D0-8E66-D2A7794AC900}.Release.Build.0 = Release|Win32
|
||||
{C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}.Debug.ActiveCfg = Debug|Win32
|
||||
{C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}.Debug.Build.0 = Debug|Win32
|
||||
{C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}.Release.ActiveCfg = Release|Win32
|
||||
{C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}.Release.Build.0 = Release|Win32
|
||||
{B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}.Debug.ActiveCfg = Debug|Win32
|
||||
{B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}.Debug.Build.0 = Debug|Win32
|
||||
{B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}.Release.ActiveCfg = Release|Win32
|
||||
{B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}.Release.Build.0 = Release|Win32
|
||||
{DD55E1AC-451C-422C-92BC-26E3F7AA137B}.Debug.ActiveCfg = Debug|Win32
|
||||
{DD55E1AC-451C-422C-92BC-26E3F7AA137B}.Debug.Build.0 = Debug|Win32
|
||||
{DD55E1AC-451C-422C-92BC-26E3F7AA137B}.Release.ActiveCfg = Release|Win32
|
||||
{DD55E1AC-451C-422C-92BC-26E3F7AA137B}.Release.Build.0 = Release|Win32
|
||||
{127547E3-416C-4C12-82E9-52F912142FB5}.Debug.ActiveCfg = Debug|Win32
|
||||
{127547E3-416C-4C12-82E9-52F912142FB5}.Debug.Build.0 = Debug|Win32
|
||||
{127547E3-416C-4C12-82E9-52F912142FB5}.Release.ActiveCfg = Release|Win32
|
||||
{127547E3-416C-4C12-82E9-52F912142FB5}.Release.Build.0 = Release|Win32
|
||||
{ED939A01-860D-4E92-A892-E195CB311AB7}.Debug.ActiveCfg = Debug|Win32
|
||||
{ED939A01-860D-4E92-A892-E195CB311AB7}.Debug.Build.0 = Debug|Win32
|
||||
{ED939A01-860D-4E92-A892-E195CB311AB7}.Release.ActiveCfg = Release|Win32
|
||||
{ED939A01-860D-4E92-A892-E195CB311AB7}.Release.Build.0 = Release|Win32
|
||||
{AB8F959E-9DD3-47F3-8DAA-98BC12927A79}.Debug.ActiveCfg = Debug
|
||||
{AB8F959E-9DD3-47F3-8DAA-98BC12927A79}.Release.ActiveCfg = Release
|
||||
{92D13C3B-610D-4AD6-BB4D-DDA9E74EBD14}.Debug.ActiveCfg = Debug|Win32
|
||||
{92D13C3B-610D-4AD6-BB4D-DDA9E74EBD14}.Debug.Build.0 = Debug|Win32
|
||||
{92D13C3B-610D-4AD6-BB4D-DDA9E74EBD14}.Release.ActiveCfg = Release|Win32
|
||||
{92D13C3B-610D-4AD6-BB4D-DDA9E74EBD14}.Release.Build.0 = Release|Win32
|
||||
{5DAFF608-0007-4EA3-AC5D-F573B77FA61C}.Debug.ActiveCfg = Debug|Win32
|
||||
{5DAFF608-0007-4EA3-AC5D-F573B77FA61C}.Debug.Build.0 = Debug|Win32
|
||||
{5DAFF608-0007-4EA3-AC5D-F573B77FA61C}.Release.ActiveCfg = Release|Win32
|
||||
{5DAFF608-0007-4EA3-AC5D-F573B77FA61C}.Release.Build.0 = Release|Win32
|
||||
{F7607AF2-705A-4046-B7EC-067DEE3BB79F}.Debug.ActiveCfg = Debug
|
||||
{F7607AF2-705A-4046-B7EC-067DEE3BB79F}.Release.ActiveCfg = Release
|
||||
EndGlobalSection
|
||||
GlobalSection(ExtensibilityGlobals) = postSolution
|
||||
EndGlobalSection
|
||||
GlobalSection(ExtensibilityAddIns) = postSolution
|
||||
EndGlobalSection
|
||||
EndGlobal
|
||||
1
win32/vc7/ck2cti/.cvsignore
Normal file
1
win32/vc7/ck2cti/.cvsignore
Normal file
|
|
@ -0,0 +1 @@
|
|||
Debug
|
||||
137
win32/vc7/ck2cti/ck2cti.vcproj
Executable file
137
win32/vc7/ck2cti/ck2cti.vcproj
Executable file
|
|
@ -0,0 +1,137 @@
|
|||
<?xml version="1.0" encoding="Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="7.10"
|
||||
Name="ck2cti"
|
||||
ProjectGUID="{B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}"
|
||||
RootNamespace="ck2cti"
|
||||
Keyword="Win32Proj">
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"/>
|
||||
</Platforms>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="../../../build/bin/i686-pc-win32d"
|
||||
IntermediateDirectory="Debug"
|
||||
ConfigurationType="1"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="0"
|
||||
AdditionalIncludeDirectories="../../../Cantera/src"
|
||||
PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE"
|
||||
MinimalRebuild="TRUE"
|
||||
BasicRuntimeChecks="3"
|
||||
RuntimeLibrary="2"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
Detect64BitPortabilityProblems="TRUE"
|
||||
DebugInformationFormat="4"/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
AdditionalDependencies="cantera.lib converters.lib ctcxx.lib tpx.lib"
|
||||
OutputFile="$(OutDir)/ck2cti.exe"
|
||||
LinkIncremental="2"
|
||||
AdditionalLibraryDirectories="../../../build/lib/i686-pc-win32d"
|
||||
GenerateDebugInformation="TRUE"
|
||||
ProgramDatabaseFile="$(OutDir)/ck2cti.pdb"
|
||||
SubSystem="1"
|
||||
TargetMachine="1"/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCWebDeploymentTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="../../../build/bin/i686-pc-win32"
|
||||
IntermediateDirectory="Release"
|
||||
ConfigurationType="1"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalIncludeDirectories="../../../Cantera/src"
|
||||
PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE"
|
||||
RuntimeLibrary="2"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
Detect64BitPortabilityProblems="TRUE"
|
||||
DebugInformationFormat="0"/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
OutputFile="$(OutDir)/ck2cti.exe"
|
||||
LinkIncremental="1"
|
||||
GenerateDebugInformation="FALSE"
|
||||
SubSystem="1"
|
||||
OptimizeReferences="2"
|
||||
EnableCOMDATFolding="2"
|
||||
TargetMachine="1"/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCWebDeploymentTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<References>
|
||||
</References>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
||||
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}">
|
||||
<File
|
||||
RelativePath="..\..\..\tools\src\ck2cti.cpp">
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Header Files"
|
||||
Filter="h;hpp;hxx;hm;inl;inc;xsd"
|
||||
UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}">
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Resource Files"
|
||||
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
||||
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}">
|
||||
</Filter>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
3
win32/vc7/clib/.cvsignore
Normal file
3
win32/vc7/clib/.cvsignore
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
Debug
|
||||
ReadMe.txt
|
||||
Release
|
||||
203
win32/vc7/clib/clib.vcproj
Executable file
203
win32/vc7/clib/clib.vcproj
Executable file
|
|
@ -0,0 +1,203 @@
|
|||
<?xml version="1.0" encoding="Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="7.10"
|
||||
Name="clib"
|
||||
ProjectGUID="{C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}"
|
||||
RootNamespace="clib"
|
||||
Keyword="Win32Proj">
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"/>
|
||||
</Platforms>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="../../../build/lib/i686-pc-win32d"
|
||||
IntermediateDirectory="Debug"
|
||||
ConfigurationType="2"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="0"
|
||||
AdditionalIncludeDirectories="../../../Cantera/src"
|
||||
PreprocessorDefinitions="WIN32;_DEBUG;_LIB"
|
||||
MinimalRebuild="TRUE"
|
||||
BasicRuntimeChecks="3"
|
||||
RuntimeLibrary="2"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
Detect64BitPortabilityProblems="TRUE"
|
||||
DebugInformationFormat="4"/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
IgnoreImportLibrary="TRUE"
|
||||
AdditionalDependencies="cantera.lib zeroD.lib oneD.lib transport.lib tpx.lib ctf2c.lib ctcxx.lib cvode.lib ctmath.lib ctlapack.lib ctblas.lib"
|
||||
LinkIncremental="1"
|
||||
AdditionalLibraryDirectories="../../../build/lib/i686-pc-win32d"/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCWebDeploymentTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="../../../build/lib/i686-pc-win32"
|
||||
IntermediateDirectory="Release"
|
||||
ConfigurationType="2"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="1"
|
||||
AdditionalIncludeDirectories="../../../Cantera/src"
|
||||
PreprocessorDefinitions="WIN32;NDEBUG;_LIB"
|
||||
RuntimeLibrary="2"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
Detect64BitPortabilityProblems="TRUE"
|
||||
DebugInformationFormat="3"/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
AdditionalLibraryDirectories="../../../build/lib/i686-pc-win32"/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCWebDeploymentTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<References>
|
||||
</References>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
||||
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}">
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\clib\src\ct.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\clib\src\ctbdry.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\clib\src\ctfunc.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\clib\src\ctmultiphase.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\clib\src\ctonedim.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\clib\src\ctreactor.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\clib\src\ctrpath.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\clib\src\ctsurf.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\clib\src\ctxml.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\clib\src\Storage.cpp">
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Header Files"
|
||||
Filter="h;hpp;hxx;hm;inl;inc;xsd"
|
||||
UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}">
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\clib\src\Cabinet.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\clib\src\clib_defs.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\clib\src\ct.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\clib\src\ctbdry.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\clib\src\ctfunc.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\clib\src\ctmultiphase.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\clib\src\ctnum.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\clib\src\ctonedim.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\clib\src\ctreactor.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\clib\src\ctrpath.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\clib\src\ctstagn.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\clib\src\ctsurf.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\clib\src\ctxml.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\resource.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\clib\src\Storage.h">
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Resource Files"
|
||||
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
||||
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}">
|
||||
</Filter>
|
||||
<File
|
||||
RelativePath=".\ReadMe.txt">
|
||||
</File>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
3
win32/vc7/config_h/.cvsignore
Normal file
3
win32/vc7/config_h/.cvsignore
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
status
|
||||
Debug
|
||||
Release
|
||||
144
win32/vc7/config_h/config_h.vcproj
Executable file
144
win32/vc7/config_h/config_h.vcproj
Executable file
|
|
@ -0,0 +1,144 @@
|
|||
<?xml version="1.0" encoding="Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="7.10"
|
||||
Name="config_h"
|
||||
ProjectGUID="{5DAFF608-0007-4EA3-AC5D-F573B77FA61C}"
|
||||
Keyword="Win32Proj">
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"/>
|
||||
</Platforms>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="Debug"
|
||||
IntermediateDirectory="Debug"
|
||||
ConfigurationType="1"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="0"
|
||||
PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE"
|
||||
MinimalRebuild="TRUE"
|
||||
BasicRuntimeChecks="3"
|
||||
RuntimeLibrary="5"
|
||||
UsePrecompiledHeader="3"
|
||||
WarningLevel="3"
|
||||
Detect64BitPortabilityProblems="TRUE"
|
||||
DebugInformationFormat="4"/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
Description="copying winconfig.h to config.h"
|
||||
CommandLine="copy ..\..\..\winconfig.h ..\..\..\config.h > status
|
||||
"
|
||||
Outputs="..\..\..\config.h status"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
OutputFile="$(OutDir)/config_h.exe"
|
||||
LinkIncremental="2"
|
||||
GenerateDebugInformation="TRUE"
|
||||
ProgramDatabaseFile="$(OutDir)/config_h.pdb"
|
||||
SubSystem="1"
|
||||
TargetMachine="1"/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCWebDeploymentTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="Release"
|
||||
IntermediateDirectory="Release"
|
||||
ConfigurationType="1"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE"
|
||||
RuntimeLibrary="4"
|
||||
UsePrecompiledHeader="3"
|
||||
WarningLevel="3"
|
||||
Detect64BitPortabilityProblems="TRUE"
|
||||
DebugInformationFormat="3"/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
Description="copying winconfig.h to config.h"
|
||||
CommandLine="cmd /C docopy.cmd
|
||||
"
|
||||
AdditionalDependencies="..\..\..\ext\f2c_libs\arith.hwin32"
|
||||
Outputs="..\..\..\config.h ..\..\..\ext\f2c_libs\arith.h status"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
OutputFile="$(OutDir)/config_h.exe"
|
||||
LinkIncremental="1"
|
||||
GenerateDebugInformation="TRUE"
|
||||
SubSystem="1"
|
||||
OptimizeReferences="2"
|
||||
EnableCOMDATFolding="2"
|
||||
TargetMachine="1"/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCWebDeploymentTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<References>
|
||||
</References>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
||||
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}">
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\arith.hwin32">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\winconfig.h">
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Header Files"
|
||||
Filter="h;hpp;hxx;hm;inl;inc;xsd"
|
||||
UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}">
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Resource Files"
|
||||
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
||||
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}">
|
||||
</Filter>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
6
win32/vc7/config_h/docopy.cmd
Normal file
6
win32/vc7/config_h/docopy.cmd
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
cd ..\..\..
|
||||
copy winconfig.h config.h
|
||||
cd ext\f2c_libs
|
||||
copy arith.hwin32 arith.h
|
||||
cd ..\..\win32\vc7\config_h
|
||||
echo 'ok' > status
|
||||
86
win32/vc7/configure.vc++
Executable file
86
win32/vc7/configure.vc++
Executable file
|
|
@ -0,0 +1,86 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
#
|
||||
# Sample bourne shell wrapper around Cantera's configure
|
||||
# shell command, used for building and installing Cantera
|
||||
# using MS VC++, without fortran support.
|
||||
# Copy this file to the top directory of the Cantera distribution.
|
||||
# Edit a few directory locations indicated below. Then execute it
|
||||
# after autoconf is run.
|
||||
#
|
||||
# Tell Cantera you will be using a VC++ compiler to compile and link
|
||||
# all of the programs
|
||||
#
|
||||
USE_VISUAL_STUDIO="y"
|
||||
export USEVISUALSTUDIO
|
||||
#
|
||||
# Specify the root directory: Will need adjusting
|
||||
#
|
||||
CANTERA_ROOT="/cygwin/c/vc_env/cantera-1.7_develop"
|
||||
export CANTERA_ROOT
|
||||
#
|
||||
# Specify the install directory: Will need adjusting
|
||||
#
|
||||
CANTERA_INSTALL_DIR="C:/vc_env/Cantera"
|
||||
export CANTERA_INSTALL_DIR
|
||||
#
|
||||
#
|
||||
# PYTHON_CMD: This is the default location that Python24
|
||||
# puts its files.
|
||||
#
|
||||
PYTHON_CMD="c:/python24/python.exe"
|
||||
export PYTHON_CMD
|
||||
#
|
||||
# WIN_PYTHON_CMD: This is the default location that Python24
|
||||
# puts its files.
|
||||
#
|
||||
WIN_PYTHON_CMD='C:/Python24/python'
|
||||
export WIN_PYTHON_CMD
|
||||
#
|
||||
# These 2 next lines tells Cantera and Python where to install
|
||||
# the Cantera python modules.
|
||||
#
|
||||
SET_PYTHON_SITE_PACKAGE_TOPDIR=y
|
||||
export SET_PYTHON_SITE_PACKAGE_TOPDIR
|
||||
#
|
||||
PYTHON_SITE_PACKAGE_TOPDIR="C:\Python24"
|
||||
export PYTHON_SITE_PACKAGE_TOPDIR
|
||||
#
|
||||
# No matlab toolbox in this script. However, if you have matlab
|
||||
# on your machine, you can change the "n" to a "y".
|
||||
BUILD_MATLAB_TOOLBOX="n"
|
||||
export BUILD_MATLAB_TOOLBOX
|
||||
#
|
||||
# Indicate that you will be using the clib.dll
|
||||
#
|
||||
USE_DLL="y"
|
||||
export USE_DLL
|
||||
#
|
||||
#
|
||||
CXXFLAGS="-g"
|
||||
export CXXFLAGS
|
||||
#
|
||||
#
|
||||
LCXX_END_LIBS="-lm -lstdc++"
|
||||
export LCXX_END_LIBS
|
||||
#
|
||||
PYTHON_PACKAGE='full'
|
||||
#PYTHON_PACKAGE='minimal'
|
||||
export PYTHON_PACKAGE
|
||||
|
||||
WITH_IDEAL_SOLUTIONS="y"
|
||||
export WITH_IDEAL_SOLUTIONS
|
||||
|
||||
WITH_ELECTROLYTES="y"
|
||||
export WITH_ELECTROLYTES
|
||||
|
||||
WITH_VCSNONIDEAL="y"
|
||||
export WITH_VCSNONIDEAL
|
||||
|
||||
|
||||
#
|
||||
# Call the configure command at the top of the Cantera distribution
|
||||
# in a cygwin shell
|
||||
#
|
||||
./preconfig
|
||||
#
|
||||
2
win32/vc7/converters/.cvsignore
Normal file
2
win32/vc7/converters/.cvsignore
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
Debug
|
||||
ReadMe.txt
|
||||
189
win32/vc7/converters/converters.vcproj
Executable file
189
win32/vc7/converters/converters.vcproj
Executable file
|
|
@ -0,0 +1,189 @@
|
|||
<?xml version="1.0" encoding="Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="7.10"
|
||||
Name="converters"
|
||||
ProjectGUID="{5D8C2EA9-A90C-48A7-A541-180332B941DD}"
|
||||
Keyword="Win32Proj">
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"/>
|
||||
</Platforms>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="../../../build/lib/i686-pc-win32d"
|
||||
IntermediateDirectory="Debug"
|
||||
ConfigurationType="4"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="0"
|
||||
PreprocessorDefinitions="WIN32;_DEBUG;_LIB"
|
||||
MinimalRebuild="TRUE"
|
||||
BasicRuntimeChecks="3"
|
||||
RuntimeLibrary="2"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
Detect64BitPortabilityProblems="TRUE"
|
||||
DebugInformationFormat="4"/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="$(OutDir)/converters.lib"/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="../../../build/lib/i686-pc-win32"
|
||||
IntermediateDirectory="Release"
|
||||
ConfigurationType="4"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
PreprocessorDefinitions="WIN32;NDEBUG;_LIB"
|
||||
RuntimeLibrary="2"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
Detect64BitPortabilityProblems="TRUE"
|
||||
DebugInformationFormat="0"/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="$(OutDir)/converters.lib"/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<References>
|
||||
</References>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
||||
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}">
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\converters\atomicWeightDB.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\converters\ck2ct.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\converters\CKParser.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\converters\ckr_utils.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\converters\CKReader.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\converters\filter.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\converters\Reaction.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\converters\thermoFunctions.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\converters\writelog.cpp">
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Header Files"
|
||||
Filter="h;hpp;hxx;hm;inl;inc;xsd"
|
||||
UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}">
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\converters\ck2ct.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\converters\ck2ctml.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\converters\CKParser.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\converters\ckr_defs.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\converters\ckr_utils.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\converters\CKReader.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\converters\config.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\converters\Constituent.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\converters\Element.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\converters\Group.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\converters\Reaction.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\converters\RxnSpecies.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\converters\Species.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\converters\thermoFunctions.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\converters\writelog.h">
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Resource Files"
|
||||
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
||||
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}">
|
||||
</Filter>
|
||||
<File
|
||||
RelativePath=".\ReadMe.txt">
|
||||
</File>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
1
win32/vc7/csvdiff/.cvsignore
Normal file
1
win32/vc7/csvdiff/.cvsignore
Normal file
|
|
@ -0,0 +1 @@
|
|||
Debug
|
||||
144
win32/vc7/csvdiff/csvdiff.vcproj
Executable file
144
win32/vc7/csvdiff/csvdiff.vcproj
Executable file
|
|
@ -0,0 +1,144 @@
|
|||
<?xml version="1.0" encoding="Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="7.10"
|
||||
Name="csvdiff"
|
||||
ProjectGUID="{AF888A7A-C325-4312-9BE0-CDA1B1E540E9}"
|
||||
Keyword="Win32Proj">
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"/>
|
||||
</Platforms>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="../../../bin"
|
||||
IntermediateDirectory="Debug"
|
||||
ConfigurationType="1"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="0"
|
||||
PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE"
|
||||
MinimalRebuild="TRUE"
|
||||
BasicRuntimeChecks="3"
|
||||
RuntimeLibrary="5"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
Detect64BitPortabilityProblems="TRUE"
|
||||
DebugInformationFormat="4"/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
OutputFile="$(OutDir)/csvdiff.exe"
|
||||
LinkIncremental="2"
|
||||
GenerateDebugInformation="TRUE"
|
||||
ProgramDatabaseFile="$(OutDir)/csvdiff.pdb"
|
||||
SubSystem="1"
|
||||
TargetMachine="1"/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCWebDeploymentTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="Release"
|
||||
IntermediateDirectory="Release"
|
||||
ConfigurationType="1"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE"
|
||||
RuntimeLibrary="4"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
Detect64BitPortabilityProblems="TRUE"
|
||||
DebugInformationFormat="3"/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
OutputFile="$(OutDir)/csvdiff.exe"
|
||||
LinkIncremental="1"
|
||||
GenerateDebugInformation="TRUE"
|
||||
SubSystem="1"
|
||||
OptimizeReferences="2"
|
||||
EnableCOMDATFolding="2"
|
||||
TargetMachine="1"/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCWebDeploymentTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<References>
|
||||
</References>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
||||
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}">
|
||||
<File
|
||||
RelativePath="..\..\..\tools\testtools\csvdiff.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\tools\testtools\mdp_allo.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\tools\testtools\tok_input_util.cpp">
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Header Files"
|
||||
Filter="h;hpp;hxx;hm;inl;inc;xsd"
|
||||
UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}">
|
||||
<File
|
||||
RelativePath="..\..\..\tools\testtools\mdp_allo.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\tools\testtools\tok_input_util.h">
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Resource Files"
|
||||
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
||||
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}">
|
||||
</Filter>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
2
win32/vc7/cti2ctml/.cvsignore
Normal file
2
win32/vc7/cti2ctml/.cvsignore
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
Debug
|
||||
ReadMe.txt
|
||||
138
win32/vc7/cti2ctml/cti2ctml.vcproj
Executable file
138
win32/vc7/cti2ctml/cti2ctml.vcproj
Executable file
|
|
@ -0,0 +1,138 @@
|
|||
<?xml version="1.0" encoding="Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="7.10"
|
||||
Name="cti2ctml"
|
||||
ProjectGUID="{4F5B4442-98E5-4B11-9239-CDF5148C1902}"
|
||||
Keyword="Win32Proj">
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"/>
|
||||
</Platforms>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="../../../build/bin/i686-pc-win32"
|
||||
IntermediateDirectory="Debug"
|
||||
ConfigurationType="1"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="0"
|
||||
AdditionalIncludeDirectories="../../../Cantera/src"
|
||||
PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE"
|
||||
MinimalRebuild="TRUE"
|
||||
BasicRuntimeChecks="3"
|
||||
RuntimeLibrary="5"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
Detect64BitPortabilityProblems="TRUE"
|
||||
DebugInformationFormat="4"/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
AdditionalDependencies="cantera.lib converters.lib ctcxx.lib tpx.lib"
|
||||
OutputFile="$(OutDir)/cti2ctml.exe"
|
||||
LinkIncremental="2"
|
||||
AdditionalLibraryDirectories="../../../build/lib/i686-pc-win32d"
|
||||
GenerateDebugInformation="TRUE"
|
||||
ProgramDatabaseFile="$(OutDir)/cti2ctml.pdb"
|
||||
SubSystem="1"
|
||||
TargetMachine="1"/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCWebDeploymentTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="../../../build/bin/i686-pc-win32"
|
||||
IntermediateDirectory="Release"
|
||||
ConfigurationType="1"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalIncludeDirectories="../../../Cantera/src"
|
||||
PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE"
|
||||
RuntimeLibrary="4"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
Detect64BitPortabilityProblems="TRUE"
|
||||
DebugInformationFormat="3"/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
AdditionalDependencies="cantera.lib converters.lib cxxutils.lib tpx.lib"
|
||||
OutputFile="$(OutDir)/cti2ctml.exe"
|
||||
LinkIncremental="1"
|
||||
AdditionalLibraryDirectories="../../../build/lib/i686-pc-win32"
|
||||
GenerateDebugInformation="TRUE"
|
||||
SubSystem="1"
|
||||
OptimizeReferences="2"
|
||||
EnableCOMDATFolding="2"
|
||||
TargetMachine="1"/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCWebDeploymentTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<References>
|
||||
</References>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
||||
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}">
|
||||
<File
|
||||
RelativePath="..\..\..\tools\src\cti2ctml.cpp">
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Header Files"
|
||||
Filter="h;hpp;hxx;hm;inl;inc;xsd"
|
||||
UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}">
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Resource Files"
|
||||
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
||||
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}">
|
||||
</Filter>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
2
win32/vc7/ctmatlab/.cvsignore
Normal file
2
win32/vc7/ctmatlab/.cvsignore
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
Debug
|
||||
Release
|
||||
127
win32/vc7/ctmatlab/ctmatlab.vcproj
Executable file
127
win32/vc7/ctmatlab/ctmatlab.vcproj
Executable file
|
|
@ -0,0 +1,127 @@
|
|||
<?xml version="1.0" encoding="Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="7.10"
|
||||
Name="ctmatlab"
|
||||
ProjectGUID="{92D13C3B-610D-4AD6-BB4D-DDA9E74EBD14}"
|
||||
RootNamespace="ctmatlab"
|
||||
Keyword="ManagedCProj">
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"/>
|
||||
</Platforms>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="$(SolutionDir)$(ConfigurationName)"
|
||||
IntermediateDirectory="$(ConfigurationName)"
|
||||
ConfigurationType="1"
|
||||
CharacterSet="2"
|
||||
ManagedExtensions="TRUE">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="0"
|
||||
PreprocessorDefinitions="WIN32;_DEBUG"
|
||||
MinimalRebuild="FALSE"
|
||||
BasicRuntimeChecks="0"
|
||||
RuntimeLibrary="1"
|
||||
WarningLevel="3"
|
||||
DebugInformationFormat="3"/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
OutputFile="$(OutDir)\$(ProjectName).exe"
|
||||
LinkIncremental="2"
|
||||
GenerateDebugInformation="TRUE"
|
||||
AssemblyDebug="1"/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCWebDeploymentTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="$(SolutionDir)$(ConfigurationName)"
|
||||
IntermediateDirectory="$(ConfigurationName)"
|
||||
ConfigurationType="1"
|
||||
CharacterSet="2"
|
||||
ManagedExtensions="TRUE">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
PreprocessorDefinitions="WIN32;NDEBUG"
|
||||
MinimalRebuild="FALSE"
|
||||
RuntimeLibrary="0"
|
||||
WarningLevel="3"
|
||||
DebugInformationFormat="3"/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
CommandLine="cmd /C runmlab.cmd
|
||||
"
|
||||
Outputs="status2"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
OutputFile="$(OutDir)\$(ProjectName).exe"
|
||||
LinkIncremental="1"
|
||||
GenerateDebugInformation="FALSE"/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"
|
||||
ExcludedFromBuild="FALSE"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCWebDeploymentTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<References>
|
||||
</References>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
||||
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}">
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Header Files"
|
||||
Filter="h;hpp;hxx;hm;inl;inc;xsd"
|
||||
UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}">
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Resource Files"
|
||||
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
||||
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}">
|
||||
</Filter>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
5
win32/vc7/ctmatlab/runmlab.cmd
Executable file
5
win32/vc7/ctmatlab/runmlab.cmd
Executable file
|
|
@ -0,0 +1,5 @@
|
|||
cd ..\..\..\Cantera\matlab\cantera
|
||||
echo 'delete me!' > ctmethods.mexw32
|
||||
echo 'delete me!' > ctmethods.dll
|
||||
%MATLAB_CMD% -nodisplay -nosplash -nojvm -r buildwin
|
||||
echo 'ok' > status
|
||||
2
win32/vc7/ctpython/.cvsignore
Normal file
2
win32/vc7/ctpython/.cvsignore
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
Debug
|
||||
Release
|
||||
130
win32/vc7/ctpython/ctpython.vcproj
Executable file
130
win32/vc7/ctpython/ctpython.vcproj
Executable file
|
|
@ -0,0 +1,130 @@
|
|||
<?xml version="1.0" encoding="Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="7.10"
|
||||
Name="ctpython"
|
||||
ProjectGUID="{ED939A01-860D-4E92-A892-E195CB311AB7}"
|
||||
RootNamespace="ctpython"
|
||||
Keyword="ManagedCProj">
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"/>
|
||||
</Platforms>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="$(SolutionDir)$(ConfigurationName)"
|
||||
IntermediateDirectory="$(ConfigurationName)"
|
||||
ConfigurationType="1"
|
||||
CharacterSet="2"
|
||||
ManagedExtensions="TRUE">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="0"
|
||||
PreprocessorDefinitions="WIN32;_DEBUG"
|
||||
MinimalRebuild="FALSE"
|
||||
BasicRuntimeChecks="0"
|
||||
RuntimeLibrary="1"
|
||||
WarningLevel="3"
|
||||
DebugInformationFormat="3"/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
CommandLine="cmd /C runpython.cmd
|
||||
"
|
||||
Outputs="status"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
OutputFile="$(OutDir)\$(ProjectName).exe"
|
||||
LinkIncremental="2"
|
||||
GenerateDebugInformation="TRUE"
|
||||
AssemblyDebug="1"/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCWebDeploymentTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="$(SolutionDir)$(ConfigurationName)"
|
||||
IntermediateDirectory="$(ConfigurationName)"
|
||||
ConfigurationType="1"
|
||||
CharacterSet="2"
|
||||
ManagedExtensions="TRUE"
|
||||
DeleteExtensionsOnClean="*.pyc;$(TargetPath)">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
PreprocessorDefinitions="WIN32;NDEBUG"
|
||||
MinimalRebuild="FALSE"
|
||||
RuntimeLibrary="0"
|
||||
WarningLevel="3"
|
||||
DebugInformationFormat="3"/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
CommandLine="cmd /C runpython.cmd
|
||||
"
|
||||
Outputs="status"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
OutputFile="$(OutDir)\$(ProjectName).exe"
|
||||
LinkIncremental="1"
|
||||
GenerateDebugInformation="FALSE"/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCWebDeploymentTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<References>
|
||||
</References>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
||||
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}">
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Header Files"
|
||||
Filter="h;hpp;hxx;hm;inl;inc;xsd"
|
||||
UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}">
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Resource Files"
|
||||
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
||||
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}">
|
||||
</Filter>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
5
win32/vc7/ctpython/runpython.cmd
Executable file
5
win32/vc7/ctpython/runpython.cmd
Executable file
|
|
@ -0,0 +1,5 @@
|
|||
cd ..\..\..\Cantera\python
|
||||
%PYTHON_CMD% winsetup.py build
|
||||
%PYTHON_CMD% winsetup.py bdist_wininst
|
||||
%PYTHON_CMD% winsetup.py install
|
||||
echo 'ok' > status
|
||||
3
win32/vc7/cvode/.cvsignore
Normal file
3
win32/vc7/cvode/.cvsignore
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
Debug
|
||||
Release
|
||||
ReadMe.txt
|
||||
197
win32/vc7/cvode/cvode.vcproj
Executable file
197
win32/vc7/cvode/cvode.vcproj
Executable file
|
|
@ -0,0 +1,197 @@
|
|||
<?xml version="1.0" encoding="Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="7.10"
|
||||
Name="cvode"
|
||||
ProjectGUID="{9BEC323F-1492-4AF0-8081-F8E3761D9FFC}"
|
||||
RootNamespace="cvode"
|
||||
Keyword="Win32Proj">
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"/>
|
||||
</Platforms>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="../../../build/lib/i686-pc-win32d"
|
||||
IntermediateDirectory="Debug"
|
||||
ConfigurationType="4"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="0"
|
||||
AdditionalIncludeDirectories="..\..\..\ext\cvode\include"
|
||||
PreprocessorDefinitions="WIN32;_DEBUG;_LIB"
|
||||
MinimalRebuild="TRUE"
|
||||
BasicRuntimeChecks="3"
|
||||
RuntimeLibrary="2"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
Detect64BitPortabilityProblems="TRUE"
|
||||
DebugInformationFormat="4"/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
Outputs="../../../Cantera/python/status"/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="$(OutDir)/cvode.lib"/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="../../../build/lib/i686-pc-win32"
|
||||
IntermediateDirectory="Release"
|
||||
ConfigurationType="4"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalIncludeDirectories="../../../ext/cvode/include"
|
||||
PreprocessorDefinitions="WIN32;NDEBUG;_LIB"
|
||||
RuntimeLibrary="2"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
Detect64BitPortabilityProblems="TRUE"
|
||||
DebugInformationFormat="0"/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
Outputs="../../../Cantera/python/status"/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="$(OutDir)/cvode.lib"/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<References>
|
||||
</References>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
||||
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}">
|
||||
<File
|
||||
RelativePath="..\..\..\ext\cvode\source\band.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\cvode\source\cvband.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\cvode\source\cvbandpre.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\cvode\source\cvdense.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\cvode\source\cvdiag.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\cvode\source\cvode.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\cvode\source\cvspgmr.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\cvode\source\dense.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\cvode\source\iterativ.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\cvode\source\llnlmath.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\cvode\source\nvector.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\cvode\source\spgmr.c">
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Header Files"
|
||||
Filter="h;hpp;hxx;hm;inl;inc;xsd"
|
||||
UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}">
|
||||
<File
|
||||
RelativePath="..\..\..\ext\cvode\include\band.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\cvode\include\cvband.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\cvode\include\cvbandpre.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\cvode\include\cvdense.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\cvode\include\cvdiag.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\cvode\include\cvode.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\cvode\include\cvspgmr.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\cvode\include\dense.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\cvode\include\iterativ.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\cvode\include\llnlmath.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\cvode\include\llnltyps.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\cvode\include\nvector.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\cvode\include\spgmr.h">
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Resource Files"
|
||||
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
||||
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}">
|
||||
</Filter>
|
||||
<File
|
||||
RelativePath=".\ReadMe.txt">
|
||||
</File>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
1
win32/vc7/cxx_examples/.cvsignore
Normal file
1
win32/vc7/cxx_examples/.cvsignore
Normal file
|
|
@ -0,0 +1 @@
|
|||
Debug
|
||||
156
win32/vc7/cxx_examples/cxx_examples.vcproj
Executable file
156
win32/vc7/cxx_examples/cxx_examples.vcproj
Executable file
|
|
@ -0,0 +1,156 @@
|
|||
<?xml version="1.0" encoding="Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="7.10"
|
||||
Name="cxx_examples"
|
||||
ProjectGUID="{0E635864-A310-4468-9D97-9CE67B078C97}"
|
||||
Keyword="Win32Proj">
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"/>
|
||||
</Platforms>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="../../../examples/cxx"
|
||||
IntermediateDirectory="Debug"
|
||||
ConfigurationType="1"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="0"
|
||||
AdditionalIncludeDirectories="../../../build/include/cantera"
|
||||
PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE"
|
||||
MinimalRebuild="TRUE"
|
||||
BasicRuntimeChecks="3"
|
||||
RuntimeLibrary="5"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
Detect64BitPortabilityProblems="TRUE"
|
||||
DebugInformationFormat="4"/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
AdditionalDependencies="cantera.lib zerod.lib oned.lib transport.lib tpx.lib ctcxx.lib ctlapack.lib cvode.lib ctmath.lib recipes.lib ctblas.lib ctf2c.lib"
|
||||
OutputFile="$(OutDir)/cxx_examples.exe"
|
||||
LinkIncremental="2"
|
||||
AdditionalLibraryDirectories="../../../build/lib/i686-pc-win32"
|
||||
GenerateDebugInformation="TRUE"
|
||||
ProgramDatabaseFile="$(OutDir)/cxx_examples.pdb"
|
||||
SubSystem="1"
|
||||
TargetMachine="1"/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCWebDeploymentTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="Release"
|
||||
IntermediateDirectory="Release"
|
||||
ConfigurationType="1"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE"
|
||||
RuntimeLibrary="4"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
Detect64BitPortabilityProblems="TRUE"
|
||||
DebugInformationFormat="3"/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
OutputFile="$(OutDir)/cxx_examples.exe"
|
||||
LinkIncremental="1"
|
||||
GenerateDebugInformation="TRUE"
|
||||
SubSystem="1"
|
||||
OptimizeReferences="2"
|
||||
EnableCOMDATFolding="2"
|
||||
TargetMachine="1"/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCWebDeploymentTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<References>
|
||||
</References>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
||||
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}">
|
||||
<File
|
||||
RelativePath="..\..\..\examples\cxx\equil_example1.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\examples\cxx\examples.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\examples\cxx\kinetics_example1.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\examples\cxx\kinetics_example2.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\examples\cxx\rxnpath_example1.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\examples\cxx\transport_example1.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\examples\cxx\transport_example2.cpp">
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Header Files"
|
||||
Filter="h;hpp;hxx;hm;inl;inc;xsd"
|
||||
UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}">
|
||||
<File
|
||||
RelativePath="..\..\..\examples\cxx\example_utils.h">
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Resource Files"
|
||||
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
||||
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}">
|
||||
</Filter>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
2
win32/vc7/cxxutils/.cvsignore
Normal file
2
win32/vc7/cxxutils/.cvsignore
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
Debug
|
||||
ReadMe.txt
|
||||
170
win32/vc7/cxxutils/cxxutils.vcproj
Executable file
170
win32/vc7/cxxutils/cxxutils.vcproj
Executable file
|
|
@ -0,0 +1,170 @@
|
|||
<?xml version="1.0" encoding="Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="7.10"
|
||||
Name="ctcxx"
|
||||
ProjectGUID="{E342202C-F877-43D0-8E66-D2A7794AC900}"
|
||||
Keyword="Win32Proj">
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"/>
|
||||
</Platforms>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="../../../build/lib/i686-pc-win32d"
|
||||
IntermediateDirectory="Debug"
|
||||
ConfigurationType="4"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="0"
|
||||
AdditionalIncludeDirectories="../../../Cantera/src"
|
||||
PreprocessorDefinitions="WIN32;_DEBUG;_LIB"
|
||||
MinimalRebuild="TRUE"
|
||||
BasicRuntimeChecks="3"
|
||||
RuntimeLibrary="2"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
Detect64BitPortabilityProblems="TRUE"
|
||||
DebugInformationFormat="4"/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="$(OutDir)/ctcxx.lib"/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="../../../build/lib/i686-pc-win32"
|
||||
IntermediateDirectory="Release"
|
||||
ConfigurationType="4"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalIncludeDirectories="../../../Cantera/src"
|
||||
PreprocessorDefinitions="WIN32;NDEBUG;_LIB"
|
||||
RuntimeLibrary="2"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
Detect64BitPortabilityProblems="TRUE"
|
||||
DebugInformationFormat="0"/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="$(OutDir)/ctcxx.lib"/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<References>
|
||||
</References>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
||||
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}">
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\cxx\src\cxxutils.cpp">
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Header Files"
|
||||
Filter="h;hpp;hxx;hm;inl;inc;xsd"
|
||||
UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}">
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\cxx\include\Cantera.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\cxx\include\Edge.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\cxx\include\equilibrium.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\cxx\include\GRI30.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\cxx\include\IdealGasMix.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\cxx\include\IncompressibleSolid.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\cxx\include\integrators.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\cxx\include\Interface.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\cxx\include\kinetics.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\cxx\include\Metal.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\cxx\include\numerics.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\cxx\include\onedim.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\cxx\include\reactionpaths.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\cxx\include\surface.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\cxx\include\transport.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\cxx\include\zerodim.h">
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Resource Files"
|
||||
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
||||
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}">
|
||||
</Filter>
|
||||
<File
|
||||
RelativePath=".\ReadMe.txt">
|
||||
</File>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
61
win32/vc7/demos/CanteraDemos.sln
Executable file
61
win32/vc7/demos/CanteraDemos.sln
Executable file
|
|
@ -0,0 +1,61 @@
|
|||
Microsoft Visual Studio Solution File, Format Version 8.00
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "demo", "demo.vcproj", "{F0FBA57E-6E65-46E6-9DDD-2625E7082189}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "combustor", "combustor.vcproj", "{25A7DE6A-30B8-4878-889B-F7D9D51E005E}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "flamespeed", "flamespeed.vcproj", "{25A7DE6A-30B8-4878-889B-F7D9D51E005E}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "kinetics1", "kinetics1.vcproj", "{25A7DE6A-30B8-4878-889B-F7D9D51E005E}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "NASA_coeffs", "NASA_coeffs.vcproj", "{25A7DE6A-30B8-4878-889B-F7D9D51E005E}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Rankine", "Rankine.vcproj", "{25A7DE6A-30B8-4878-889B-F7D9D51E005E}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfiguration) = preSolution
|
||||
Debug = Debug
|
||||
Release = Release
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfiguration) = postSolution
|
||||
{F0FBA57E-6E65-46E6-9DDD-2625E7082189}.Debug.ActiveCfg = Debug|Win32
|
||||
{F0FBA57E-6E65-46E6-9DDD-2625E7082189}.Debug.Build.0 = Debug|Win32
|
||||
{F0FBA57E-6E65-46E6-9DDD-2625E7082189}.Release.ActiveCfg = Release|Win32
|
||||
{F0FBA57E-6E65-46E6-9DDD-2625E7082189}.Release.Build.0 = Release|Win32
|
||||
{25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Debug.ActiveCfg = Debug|Win32
|
||||
{25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Debug.Build.0 = Debug|Win32
|
||||
{25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Release.ActiveCfg = Release|Win32
|
||||
{25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Release.Build.0 = Release|Win32
|
||||
{25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Debug.ActiveCfg = Debug|Win32
|
||||
{25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Debug.Build.0 = Debug|Win32
|
||||
{25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Release.ActiveCfg = Release|Win32
|
||||
{25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Release.Build.0 = Release|Win32
|
||||
{25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Debug.ActiveCfg = Debug|Win32
|
||||
{25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Debug.Build.0 = Debug|Win32
|
||||
{25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Release.ActiveCfg = Release|Win32
|
||||
{25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Release.Build.0 = Release|Win32
|
||||
{25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Debug.ActiveCfg = Debug|Win32
|
||||
{25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Debug.Build.0 = Debug|Win32
|
||||
{25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Release.ActiveCfg = Release|Win32
|
||||
{25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Release.Build.0 = Release|Win32
|
||||
{25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Debug.ActiveCfg = Debug|Win32
|
||||
{25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Debug.Build.0 = Debug|Win32
|
||||
{25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Release.ActiveCfg = Release|Win32
|
||||
{25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Release.Build.0 = Release|Win32
|
||||
EndGlobalSection
|
||||
GlobalSection(ExtensibilityGlobals) = postSolution
|
||||
EndGlobalSection
|
||||
GlobalSection(ExtensibilityAddIns) = postSolution
|
||||
EndGlobalSection
|
||||
EndGlobal
|
||||
141
win32/vc7/demos/NASA_coeffs.vcproj
Normal file
141
win32/vc7/demos/NASA_coeffs.vcproj
Normal file
|
|
@ -0,0 +1,141 @@
|
|||
<?xml version="1.0" encoding="Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="7.10"
|
||||
Name="NASA_coeffs"
|
||||
ProjectGUID="{25A7DE6A-30B8-4878-889B-F7D9D51E005E}"
|
||||
Keyword="Win32Proj">
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"/>
|
||||
</Platforms>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="Debug"
|
||||
IntermediateDirectory="Debug"
|
||||
ConfigurationType="1"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="0"
|
||||
AdditionalIncludeDirectories="c:\cantera\include"
|
||||
PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE"
|
||||
MinimalRebuild="TRUE"
|
||||
BasicRuntimeChecks="3"
|
||||
RuntimeLibrary="2"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
Detect64BitPortabilityProblems="TRUE"
|
||||
DebugInformationFormat="4"/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
AdditionalDependencies="oneD.lib zeroD.lib transport.lib cantera.lib NVEC_SER.lib CVODES.lib SUNDIALS_SHARED.lib tpx.lib ctmath.lib ctlapack.lib ctblas.lib ctcxx.lib ctf2c.lib"
|
||||
OutputFile="$(OutDir)/NASA_coeffs.exe"
|
||||
LinkIncremental="2"
|
||||
AdditionalLibraryDirectories="c:\cantera\lib"
|
||||
GenerateDebugInformation="TRUE"
|
||||
ProgramDatabaseFile="$(OutDir)/NASA_coeffs.pdb"
|
||||
SubSystem="1"
|
||||
TargetMachine="1"/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCWebDeploymentTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="Release"
|
||||
IntermediateDirectory="Release"
|
||||
ConfigurationType="1"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalIncludeDirectories="c:\cantera\include"
|
||||
PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE"
|
||||
RuntimeLibrary="2"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
Detect64BitPortabilityProblems="TRUE"
|
||||
DebugInformationFormat="3"/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
AdditionalDependencies="oneD.lib zeroD.lib transport.lib cantera.lib NVEC_SER.lib CVODES.lib SUNDIALS_SHARED.lib tpx.lib ctmath.lib ctlapack.lib ctblas.lib ctcxx.lib ctf2c.lib"
|
||||
OutputFile="$(OutDir)/NASA_coeffs.exe"
|
||||
LinkIncremental="1"
|
||||
AdditionalLibraryDirectories="c:\cantera\lib"
|
||||
GenerateDebugInformation="TRUE"
|
||||
SubSystem="1"
|
||||
OptimizeReferences="2"
|
||||
EnableCOMDATFolding="2"
|
||||
TargetMachine="1"/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCWebDeploymentTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<References>
|
||||
</References>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
||||
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}">
|
||||
<File
|
||||
RelativePath=".\NASA_coeffs.cpp">
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Header Files"
|
||||
Filter="h;hpp;hxx;hm;inl;inc;xsd"
|
||||
UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}">
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Resource Files"
|
||||
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
||||
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}">
|
||||
</Filter>
|
||||
<File
|
||||
RelativePath=".\ReadMe.txt">
|
||||
</File>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
141
win32/vc7/demos/Rankine.vcproj
Executable file
141
win32/vc7/demos/Rankine.vcproj
Executable file
|
|
@ -0,0 +1,141 @@
|
|||
<?xml version="1.0" encoding="Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="7.10"
|
||||
Name="Rankine"
|
||||
ProjectGUID="{25A7DE6A-30B8-4878-889B-F7D9D51E005E}"
|
||||
Keyword="Win32Proj">
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"/>
|
||||
</Platforms>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="Debug"
|
||||
IntermediateDirectory="Debug"
|
||||
ConfigurationType="1"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="0"
|
||||
AdditionalIncludeDirectories="c:\cantera\include"
|
||||
PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE"
|
||||
MinimalRebuild="TRUE"
|
||||
BasicRuntimeChecks="3"
|
||||
RuntimeLibrary="2"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
Detect64BitPortabilityProblems="TRUE"
|
||||
DebugInformationFormat="4"/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
AdditionalDependencies="oneD.lib zeroD.lib transport.lib cantera.lib NVEC_SER.lib CVODES.lib SUNDIALS_SHARED.lib tpx.lib ctmath.lib ctlapack.lib ctblas.lib ctcxx.lib ctf2c.lib"
|
||||
OutputFile="$(OutDir)/Rankine.exe"
|
||||
LinkIncremental="2"
|
||||
AdditionalLibraryDirectories="c:\cantera\lib"
|
||||
GenerateDebugInformation="TRUE"
|
||||
ProgramDatabaseFile="$(OutDir)/Rankine.pdb"
|
||||
SubSystem="1"
|
||||
TargetMachine="1"/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCWebDeploymentTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="Release"
|
||||
IntermediateDirectory="Release"
|
||||
ConfigurationType="1"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalIncludeDirectories="c:\cantera\include"
|
||||
PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE"
|
||||
RuntimeLibrary="2"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
Detect64BitPortabilityProblems="TRUE"
|
||||
DebugInformationFormat="3"/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
AdditionalDependencies="oneD.lib zeroD.lib transport.lib cantera.lib NVEC_SER.lib CVODES.lib SUNDIALS_SHARED.lib tpx.lib ctmath.lib ctlapack.lib ctblas.lib ctcxx.lib ctf2c.lib"
|
||||
OutputFile="$(OutDir)/Rankine.exe"
|
||||
LinkIncremental="1"
|
||||
AdditionalLibraryDirectories="c:\cantera\lib"
|
||||
GenerateDebugInformation="TRUE"
|
||||
SubSystem="1"
|
||||
OptimizeReferences="2"
|
||||
EnableCOMDATFolding="2"
|
||||
TargetMachine="1"/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCWebDeploymentTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<References>
|
||||
</References>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
||||
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}">
|
||||
<File
|
||||
RelativePath=".\rankine.cpp">
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Header Files"
|
||||
Filter="h;hpp;hxx;hm;inl;inc;xsd"
|
||||
UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}">
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Resource Files"
|
||||
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
||||
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}">
|
||||
</Filter>
|
||||
<File
|
||||
RelativePath=".\ReadMe.txt">
|
||||
</File>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
12
win32/vc7/demos/ReadMe.txt
Executable file
12
win32/vc7/demos/ReadMe.txt
Executable file
|
|
@ -0,0 +1,12 @@
|
|||
The project setttings assume Cantera is installed in C:\CANTERA.
|
||||
If this is not the case, edit the project properties before building.
|
||||
|
||||
The project settings that differ from the defaults are:
|
||||
|
||||
1) use of multithreaded DLL system libraries
|
||||
2) specification of the Cantera libraries as additional
|
||||
input for the linker
|
||||
3) specification of the Cantera include and lib directories.
|
||||
|
||||
These changes to the default project settings need to be made whenever
|
||||
you create a new project that you want to link to Cantera.
|
||||
141
win32/vc7/demos/combustor.vcproj
Normal file
141
win32/vc7/demos/combustor.vcproj
Normal file
|
|
@ -0,0 +1,141 @@
|
|||
<?xml version="1.0" encoding="Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="7.10"
|
||||
Name="combustor"
|
||||
ProjectGUID="{25A7DE6A-30B8-4878-889B-F7D9D51E005E}"
|
||||
Keyword="Win32Proj">
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"/>
|
||||
</Platforms>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="Debug"
|
||||
IntermediateDirectory="Debug"
|
||||
ConfigurationType="1"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="0"
|
||||
AdditionalIncludeDirectories="c:\cantera\include"
|
||||
PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE"
|
||||
MinimalRebuild="TRUE"
|
||||
BasicRuntimeChecks="3"
|
||||
RuntimeLibrary="2"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
Detect64BitPortabilityProblems="TRUE"
|
||||
DebugInformationFormat="4"/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
AdditionalDependencies="oneD.lib zeroD.lib transport.lib cantera.lib NVEC_SER.lib CVODES.lib SUNDIALS_SHARED.lib tpx.lib ctmath.lib ctlapack.lib ctblas.lib ctcxx.lib ctf2c.lib"
|
||||
OutputFile="$(OutDir)/combustor.exe"
|
||||
LinkIncremental="2"
|
||||
AdditionalLibraryDirectories="c:\cantera\lib"
|
||||
GenerateDebugInformation="TRUE"
|
||||
ProgramDatabaseFile="$(OutDir)/combustor.pdb"
|
||||
SubSystem="1"
|
||||
TargetMachine="1"/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCWebDeploymentTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="Release"
|
||||
IntermediateDirectory="Release"
|
||||
ConfigurationType="1"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalIncludeDirectories="c:\cantera\include"
|
||||
PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE"
|
||||
RuntimeLibrary="2"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
Detect64BitPortabilityProblems="TRUE"
|
||||
DebugInformationFormat="3"/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
AdditionalDependencies="oneD.lib zeroD.lib transport.lib cantera.lib NVEC_SER.lib CVODES.lib SUNDIALS_SHARED.lib tpx.lib ctmath.lib ctlapack.lib ctblas.lib ctcxx.lib ctf2c.lib"
|
||||
OutputFile="$(OutDir)/combustor.exe"
|
||||
LinkIncremental="1"
|
||||
AdditionalLibraryDirectories="c:\cantera\lib"
|
||||
GenerateDebugInformation="TRUE"
|
||||
SubSystem="1"
|
||||
OptimizeReferences="2"
|
||||
EnableCOMDATFolding="2"
|
||||
TargetMachine="1"/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCWebDeploymentTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<References>
|
||||
</References>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
||||
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}">
|
||||
<File
|
||||
RelativePath=".\combustor.cpp">
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Header Files"
|
||||
Filter="h;hpp;hxx;hm;inl;inc;xsd"
|
||||
UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}">
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Resource Files"
|
||||
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
||||
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}">
|
||||
</Filter>
|
||||
<File
|
||||
RelativePath=".\ReadMe.txt">
|
||||
</File>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
143
win32/vc7/demos/demo.vcproj
Executable file
143
win32/vc7/demos/demo.vcproj
Executable file
|
|
@ -0,0 +1,143 @@
|
|||
<?xml version="1.0" encoding="Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="7.10"
|
||||
Name="demo"
|
||||
ProjectGUID="{F0FBA57E-6E65-46E6-9DDD-2625E7082189}"
|
||||
RootNamespace="demo"
|
||||
Keyword="Win32Proj">
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"/>
|
||||
</Platforms>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="Debug"
|
||||
IntermediateDirectory="Debug"
|
||||
ConfigurationType="1"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="0"
|
||||
AdditionalIncludeDirectories=""c:\cantera\include""
|
||||
PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE"
|
||||
GeneratePreprocessedFile="0"
|
||||
MinimalRebuild="TRUE"
|
||||
BasicRuntimeChecks="3"
|
||||
RuntimeLibrary="2"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
Detect64BitPortabilityProblems="TRUE"
|
||||
DebugInformationFormat="4"/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
AdditionalDependencies="oneD.lib zeroD.lib transport.lib cantera.lib NVEC_SER.lib CVODES.lib SUNDIALS_SHARED.lib tpx.lib ctmath.lib ctlapack.lib ctblas.lib ctcxx.lib ctf2c.lib"
|
||||
OutputFile="$(OutDir)/demo.exe"
|
||||
LinkIncremental="2"
|
||||
AdditionalLibraryDirectories="C:\Cantera\lib"
|
||||
GenerateDebugInformation="TRUE"
|
||||
ProgramDatabaseFile="$(OutDir)/demo.pdb"
|
||||
SubSystem="1"
|
||||
TargetMachine="1"/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCWebDeploymentTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="Release"
|
||||
IntermediateDirectory="Release"
|
||||
ConfigurationType="1"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalIncludeDirectories="c:\cantera\include"
|
||||
PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE"
|
||||
RuntimeLibrary="2"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
Detect64BitPortabilityProblems="TRUE"
|
||||
DebugInformationFormat="3"/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
AdditionalDependencies="oneD.lib zeroD.lib transport.lib cantera.lib NVEC_SER.lib CVODES.lib SUNDIALS_SHARED.lib tpx.lib ctmath.lib ctlapack.lib ctblas.lib ctcxx.lib ctf2c.lib"
|
||||
OutputFile="$(OutDir)/demo.exe"
|
||||
LinkIncremental="1"
|
||||
AdditionalLibraryDirectories="c:\cantera\lib"
|
||||
GenerateDebugInformation="TRUE"
|
||||
SubSystem="1"
|
||||
OptimizeReferences="2"
|
||||
EnableCOMDATFolding="2"
|
||||
TargetMachine="1"/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCWebDeploymentTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<References>
|
||||
</References>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
||||
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}">
|
||||
<File
|
||||
RelativePath=".\demo.cpp">
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Header Files"
|
||||
Filter="h;hpp;hxx;hm;inl;inc;xsd"
|
||||
UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}">
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Resource Files"
|
||||
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
||||
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}">
|
||||
</Filter>
|
||||
<File
|
||||
RelativePath=".\ReadMe.txt">
|
||||
</File>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
141
win32/vc7/demos/flamespeed.vcproj
Normal file
141
win32/vc7/demos/flamespeed.vcproj
Normal file
|
|
@ -0,0 +1,141 @@
|
|||
<?xml version="1.0" encoding="Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="7.10"
|
||||
Name="flamespeed"
|
||||
ProjectGUID="{25A7DE6A-30B8-4878-889B-F7D9D51E005E}"
|
||||
Keyword="Win32Proj">
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"/>
|
||||
</Platforms>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="Debug"
|
||||
IntermediateDirectory="Debug"
|
||||
ConfigurationType="1"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="0"
|
||||
AdditionalIncludeDirectories="c:\cantera\include"
|
||||
PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE"
|
||||
MinimalRebuild="TRUE"
|
||||
BasicRuntimeChecks="3"
|
||||
RuntimeLibrary="2"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
Detect64BitPortabilityProblems="TRUE"
|
||||
DebugInformationFormat="4"/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
AdditionalDependencies="oneD.lib zeroD.lib transport.lib cantera.lib NVEC_SER.lib CVODES.lib SUNDIALS_SHARED.lib tpx.lib ctmath.lib ctlapack.lib ctblas.lib ctcxx.lib ctf2c.lib"
|
||||
OutputFile="$(OutDir)/flamespeed.exe"
|
||||
LinkIncremental="2"
|
||||
AdditionalLibraryDirectories="c:\cantera\lib"
|
||||
GenerateDebugInformation="TRUE"
|
||||
ProgramDatabaseFile="$(OutDir)/flamespeed.pdb"
|
||||
SubSystem="1"
|
||||
TargetMachine="1"/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCWebDeploymentTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="Release"
|
||||
IntermediateDirectory="Release"
|
||||
ConfigurationType="1"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalIncludeDirectories="c:\cantera\include"
|
||||
PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE"
|
||||
RuntimeLibrary="2"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
Detect64BitPortabilityProblems="TRUE"
|
||||
DebugInformationFormat="3"/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
AdditionalDependencies="oneD.lib zeroD.lib transport.lib cantera.lib NVEC_SER.lib CVODES.lib SUNDIALS_SHARED.lib tpx.lib ctmath.lib ctlapack.lib ctblas.lib ctcxx.lib ctf2c.lib"
|
||||
OutputFile="$(OutDir)/flamespeed.exe"
|
||||
LinkIncremental="1"
|
||||
AdditionalLibraryDirectories="c:\cantera\lib"
|
||||
GenerateDebugInformation="TRUE"
|
||||
SubSystem="1"
|
||||
OptimizeReferences="2"
|
||||
EnableCOMDATFolding="2"
|
||||
TargetMachine="1"/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCWebDeploymentTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<References>
|
||||
</References>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
||||
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}">
|
||||
<File
|
||||
RelativePath=".\flamespeed.cpp">
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Header Files"
|
||||
Filter="h;hpp;hxx;hm;inl;inc;xsd"
|
||||
UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}">
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Resource Files"
|
||||
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
||||
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}">
|
||||
</Filter>
|
||||
<File
|
||||
RelativePath=".\ReadMe.txt">
|
||||
</File>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
141
win32/vc7/demos/kinetics1.vcproj
Normal file
141
win32/vc7/demos/kinetics1.vcproj
Normal file
|
|
@ -0,0 +1,141 @@
|
|||
<?xml version="1.0" encoding="Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="7.10"
|
||||
Name="kinetics1"
|
||||
ProjectGUID="{25A7DE6A-30B8-4878-889B-F7D9D51E005E}"
|
||||
Keyword="Win32Proj">
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"/>
|
||||
</Platforms>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="Debug"
|
||||
IntermediateDirectory="Debug"
|
||||
ConfigurationType="1"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="0"
|
||||
AdditionalIncludeDirectories="c:\cantera\include"
|
||||
PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE"
|
||||
MinimalRebuild="TRUE"
|
||||
BasicRuntimeChecks="3"
|
||||
RuntimeLibrary="2"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
Detect64BitPortabilityProblems="TRUE"
|
||||
DebugInformationFormat="4"/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
AdditionalDependencies="oneD.lib zeroD.lib transport.lib cantera.lib NVEC_SER.lib CVODES.lib SUNDIALS_SHARED.lib tpx.lib ctmath.lib ctlapack.lib ctblas.lib ctcxx.lib ctf2c.lib"
|
||||
OutputFile="$(OutDir)/kinetics1.exe"
|
||||
LinkIncremental="2"
|
||||
AdditionalLibraryDirectories="c:\cantera\lib"
|
||||
GenerateDebugInformation="TRUE"
|
||||
ProgramDatabaseFile="$(OutDir)/kinetics1.pdb"
|
||||
SubSystem="1"
|
||||
TargetMachine="1"/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCWebDeploymentTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="Release"
|
||||
IntermediateDirectory="Release"
|
||||
ConfigurationType="1"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalIncludeDirectories="c:\cantera\include"
|
||||
PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE"
|
||||
RuntimeLibrary="2"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
Detect64BitPortabilityProblems="TRUE"
|
||||
DebugInformationFormat="3"/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
AdditionalDependencies="oneD.lib zeroD.lib transport.lib cantera.lib NVEC_SER.lib CVODES.lib SUNDIALS_SHARED.lib tpx.lib ctmath.lib ctlapack.lib ctblas.lib ctcxx.lib ctf2c.lib"
|
||||
OutputFile="$(OutDir)/kinetics1.exe"
|
||||
LinkIncremental="1"
|
||||
AdditionalLibraryDirectories="c:\cantera\lib"
|
||||
GenerateDebugInformation="TRUE"
|
||||
SubSystem="1"
|
||||
OptimizeReferences="2"
|
||||
EnableCOMDATFolding="2"
|
||||
TargetMachine="1"/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCWebDeploymentTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<References>
|
||||
</References>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
||||
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}">
|
||||
<File
|
||||
RelativePath=".\kinetics1.cpp">
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Header Files"
|
||||
Filter="h;hpp;hxx;hm;inl;inc;xsd"
|
||||
UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}">
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Resource Files"
|
||||
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
||||
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}">
|
||||
</Filter>
|
||||
<File
|
||||
RelativePath=".\ReadMe.txt">
|
||||
</File>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
6
win32/vc7/diamondSurf/.cvsignore
Normal file
6
win32/vc7/diamondSurf/.cvsignore
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
Debug
|
||||
ReadMe.txt
|
||||
.ctt*
|
||||
ct2ctml.log
|
||||
diamond.xml
|
||||
|
||||
136
win32/vc7/diamondSurf/diamondSurf.vcproj
Executable file
136
win32/vc7/diamondSurf/diamondSurf.vcproj
Executable file
|
|
@ -0,0 +1,136 @@
|
|||
<?xml version="1.0" encoding="Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="7.10"
|
||||
Name="diamondSurf"
|
||||
ProjectGUID="{D600ECB2-D432-4E4D-9D70-BF94AEF31485}"
|
||||
Keyword="Win32Proj">
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"/>
|
||||
</Platforms>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="../../../test_problems/diamondSurf"
|
||||
IntermediateDirectory="Debug"
|
||||
ConfigurationType="1"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="0"
|
||||
AdditionalIncludeDirectories="../../../build/include/cantera"
|
||||
PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE"
|
||||
MinimalRebuild="TRUE"
|
||||
BasicRuntimeChecks="3"
|
||||
RuntimeLibrary="3"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
Detect64BitPortabilityProblems="TRUE"
|
||||
DebugInformationFormat="4"/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
AdditionalDependencies="cantera.lib ctcxx.lib tpx.lib cvode.lib"
|
||||
OutputFile="$(OutDir)/runDiamond.exe"
|
||||
LinkIncremental="2"
|
||||
AdditionalLibraryDirectories=""C:\vcEnv\cantera-1.5_develop\build\lib\i686-pc-win32d""
|
||||
IgnoreDefaultLibraryNames="msvcrt"
|
||||
GenerateDebugInformation="TRUE"
|
||||
ProgramDatabaseFile="$(OutDir)/diamondSurf.pdb"
|
||||
SubSystem="1"
|
||||
TargetMachine="1"/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCWebDeploymentTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="Release"
|
||||
IntermediateDirectory="Release"
|
||||
ConfigurationType="1"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE"
|
||||
RuntimeLibrary="4"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
Detect64BitPortabilityProblems="TRUE"
|
||||
DebugInformationFormat="3"/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
OutputFile="$(OutDir)/diamondSurf.exe"
|
||||
LinkIncremental="1"
|
||||
GenerateDebugInformation="TRUE"
|
||||
SubSystem="1"
|
||||
OptimizeReferences="2"
|
||||
EnableCOMDATFolding="2"
|
||||
TargetMachine="1"/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCWebDeploymentTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<References>
|
||||
</References>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
||||
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}">
|
||||
<File
|
||||
RelativePath="..\..\..\test_problems\diamondSurf\runDiamond.cpp">
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Header Files"
|
||||
Filter="h;hpp;hxx;hm;inl;inc;xsd"
|
||||
UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}">
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Resource Files"
|
||||
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
||||
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}">
|
||||
</Filter>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
1
win32/vc7/f2c_arithchk/.cvsignore
Normal file
1
win32/vc7/f2c_arithchk/.cvsignore
Normal file
|
|
@ -0,0 +1 @@
|
|||
Debug
|
||||
134
win32/vc7/f2c_arithchk/f2c_arithchk.vcproj
Executable file
134
win32/vc7/f2c_arithchk/f2c_arithchk.vcproj
Executable file
|
|
@ -0,0 +1,134 @@
|
|||
<?xml version="1.0" encoding="Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="7.10"
|
||||
Name="f2c_arithchk"
|
||||
ProjectGUID="{5EA18C5B-9706-423E-AEE3-41A5D180E925}"
|
||||
Keyword="Win32Proj">
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"/>
|
||||
</Platforms>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="../../../ext/f2c_libs"
|
||||
IntermediateDirectory="Debug"
|
||||
ConfigurationType="1"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="0"
|
||||
AdditionalIncludeDirectories="../../../ext/f2c_libs"
|
||||
PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE;NO_FPINIT"
|
||||
MinimalRebuild="TRUE"
|
||||
BasicRuntimeChecks="3"
|
||||
RuntimeLibrary="5"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
Detect64BitPortabilityProblems="TRUE"
|
||||
DebugInformationFormat="4"/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
OutputFile="$(OutDir)/arithchk.exe"
|
||||
LinkIncremental="2"
|
||||
GenerateDebugInformation="TRUE"
|
||||
ProgramDatabaseFile="$(OutDir)/f2c_arithchk.pdb"
|
||||
SubSystem="1"
|
||||
TargetMachine="1"/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCWebDeploymentTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="Release"
|
||||
IntermediateDirectory="Release"
|
||||
ConfigurationType="1"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalIncludeDirectories="../../../ext/f2c_libs"
|
||||
PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE"
|
||||
RuntimeLibrary="4"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
Detect64BitPortabilityProblems="TRUE"
|
||||
DebugInformationFormat="3"/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
OutputFile="$(OutDir)/f2c_arithchk.exe"
|
||||
LinkIncremental="1"
|
||||
GenerateDebugInformation="TRUE"
|
||||
SubSystem="1"
|
||||
OptimizeReferences="2"
|
||||
EnableCOMDATFolding="2"
|
||||
TargetMachine="1"/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCWebDeploymentTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<References>
|
||||
</References>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
||||
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}">
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\arithchk.c">
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Header Files"
|
||||
Filter="h;hpp;hxx;hm;inl;inc;xsd"
|
||||
UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}">
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Resource Files"
|
||||
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
||||
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}">
|
||||
</Filter>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
2
win32/vc7/f2c_blas/.cvsignore
Normal file
2
win32/vc7/f2c_blas/.cvsignore
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
Debug
|
||||
ReadMe.txt
|
||||
245
win32/vc7/f2c_blas/f2c_blas.vcproj
Executable file
245
win32/vc7/f2c_blas/f2c_blas.vcproj
Executable file
|
|
@ -0,0 +1,245 @@
|
|||
<?xml version="1.0" encoding="Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="7.10"
|
||||
Name="f2c_blas"
|
||||
ProjectGUID="{5D8EADA5-2E37-4311-AD07-605A0B21F577}"
|
||||
Keyword="Win32Proj">
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"/>
|
||||
</Platforms>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="../../../build/lib/i686-pc-win32d"
|
||||
IntermediateDirectory="Debug"
|
||||
ConfigurationType="4"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="0"
|
||||
AdditionalIncludeDirectories="../../../ext/f2c_libs"
|
||||
PreprocessorDefinitions="WIN32;_DEBUG;_LIB"
|
||||
MinimalRebuild="TRUE"
|
||||
BasicRuntimeChecks="3"
|
||||
RuntimeLibrary="2"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
Detect64BitPortabilityProblems="TRUE"
|
||||
DebugInformationFormat="4"/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="$(OutDir)/ctblas.lib"/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="../../../build/lib/i686-pc-win32"
|
||||
IntermediateDirectory="Release"
|
||||
ConfigurationType="4"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalIncludeDirectories="../../../ext/f2c_libs"
|
||||
PreprocessorDefinitions="WIN32;NDEBUG;_LIB"
|
||||
RuntimeLibrary="2"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
Detect64BitPortabilityProblems="TRUE"
|
||||
DebugInformationFormat="0"/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="$(OutDir)/ctblas.lib"/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<References>
|
||||
</References>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
||||
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}">
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_blas\dasum.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_blas\daxpy.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_blas\dcabs1.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_blas\dcopy.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_blas\ddot.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_blas\dgbmv.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_blas\dgemm.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_blas\dgemv.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_blas\dger.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_blas\dnrm2.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_blas\drot.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_blas\drotg.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_blas\drotm.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_blas\drotmg.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_blas\dsbmv.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_blas\dscal.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_blas\dsdot.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_blas\dspmv.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_blas\dspr.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_blas\dspr2.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_blas\dswap.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_blas\dsymm.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_blas\dsymv.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_blas\dsyr.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_blas\dsyr2.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_blas\dsyr2k.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_blas\dsyrk.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_blas\dtbmv.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_blas\dtbsv.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_blas\dtpmv.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_blas\dtpsv.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_blas\dtrmm.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_blas\dtrmv.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_blas\dtrsm.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_blas\dtrsv.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_blas\dzasum.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_blas\dznrm2.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_blas\idamax.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_blas\isamax.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_blas\lsame.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_blas\xerbla.c">
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Header Files"
|
||||
Filter="h;hpp;hxx;hm;inl;inc;xsd"
|
||||
UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}">
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_blas\blaswrap.h">
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Resource Files"
|
||||
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
||||
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}">
|
||||
</Filter>
|
||||
<File
|
||||
RelativePath=".\ReadMe.txt">
|
||||
</File>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
2
win32/vc7/f2c_lapack/.cvsignore
Normal file
2
win32/vc7/f2c_lapack/.cvsignore
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
Debug
|
||||
ReadMe.txt
|
||||
317
win32/vc7/f2c_lapack/f2c_lapack.vcproj
Executable file
317
win32/vc7/f2c_lapack/f2c_lapack.vcproj
Executable file
|
|
@ -0,0 +1,317 @@
|
|||
<?xml version="1.0" encoding="Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="7.10"
|
||||
Name="f2c_lapack"
|
||||
ProjectGUID="{2701B198-FEC1-45A8-BC20-AACA46B64986}"
|
||||
Keyword="Win32Proj">
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"/>
|
||||
</Platforms>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="../../../build/lib/i686-pc-win32d"
|
||||
IntermediateDirectory="Debug"
|
||||
ConfigurationType="4"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="0"
|
||||
AdditionalIncludeDirectories="../../../ext/f2c_libs"
|
||||
PreprocessorDefinitions="WIN32;_DEBUG;_LIB"
|
||||
MinimalRebuild="TRUE"
|
||||
BasicRuntimeChecks="3"
|
||||
RuntimeLibrary="2"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
Detect64BitPortabilityProblems="TRUE"
|
||||
DebugInformationFormat="4"/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="$(OutDir)/ctlapack.lib"/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="../../../build/lib/i686-pc-win32"
|
||||
IntermediateDirectory="Release"
|
||||
ConfigurationType="4"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalIncludeDirectories="../../../ext/f2c_libs"
|
||||
PreprocessorDefinitions="WIN32;NDEBUG;_LIB"
|
||||
RuntimeLibrary="2"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
Detect64BitPortabilityProblems="TRUE"
|
||||
DebugInformationFormat="0"/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="$(OutDir)/ctlapack.lib"/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<References>
|
||||
</References>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
||||
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}">
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_lapack\dbdsqr.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_lapack\dgbrfs.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_lapack\dgbsv.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_lapack\dgbsvx.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_lapack\dgbtf2.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_lapack\dgbtrf.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_lapack\dgbtrs.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_lapack\dgebak.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_lapack\dgebal.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_lapack\dgebd2.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_lapack\dgebrd.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_lapack\dgelq2.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_lapack\dgelqf.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_lapack\dgels.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_lapack\dgelsd.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_lapack\dgelss.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_lapack\dgelsx.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_lapack\dgelsy.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_lapack\dgeqr2.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_lapack\dgeqrf.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_lapack\dgetf2.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_lapack\dgetrf.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_lapack\dgetri.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_lapack\dgetrs.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_lapack\dlabad.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_lapack\dlabrd.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_lapack\dlacpy.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_lapack\dlamch.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_lapack\dlange.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_lapack\dlapy2.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_lapack\dlarf.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_lapack\dlarfb.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_lapack\dlarfg.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_lapack\dlarft.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_lapack\dlartg.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_lapack\dlas2.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_lapack\dlascl.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_lapack\dlaset.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_lapack\dlasq1.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_lapack\dlasq2.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_lapack\dlasq3.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_lapack\dlasq4.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_lapack\dlasq5.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_lapack\dlasq6.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_lapack\dlasr.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_lapack\dlasrt.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_lapack\dlassq.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_lapack\dlasv2.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_lapack\dlaswp.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_lapack\dorg2r.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_lapack\dorgbr.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_lapack\dorgl2.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_lapack\dorglq.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_lapack\dorgqr.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_lapack\dorm2r.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_lapack\dormbr.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_lapack\dorml2.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_lapack\dormlq.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_lapack\dormqr.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_lapack\drscl.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_lapack\dtrti2.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_lapack\dtrtri.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_lapack\ieeeck.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_lapack\ilaenv.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_lapack\lsame.c">
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Header Files"
|
||||
Filter="h;hpp;hxx;hm;inl;inc;xsd"
|
||||
UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}">
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_lapack\blaswrap.h">
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Resource Files"
|
||||
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
||||
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}">
|
||||
</Filter>
|
||||
<File
|
||||
RelativePath=".\ReadMe.txt">
|
||||
</File>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
2
win32/vc7/f2c_libs/.cvsignore
Normal file
2
win32/vc7/f2c_libs/.cvsignore
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
Debug
|
||||
ReadMe.txt
|
||||
618
win32/vc7/f2c_libs/f2c_libs.vcproj
Executable file
618
win32/vc7/f2c_libs/f2c_libs.vcproj
Executable file
|
|
@ -0,0 +1,618 @@
|
|||
<?xml version="1.0" encoding="Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="7.10"
|
||||
Name="f2c_libs"
|
||||
ProjectGUID="{DD55E1AC-451C-422C-92BC-26E3F7AA137B}"
|
||||
Keyword="Win32Proj">
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"/>
|
||||
</Platforms>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="../../../build/lib/i686-pc-win32d"
|
||||
IntermediateDirectory="Debug"
|
||||
ConfigurationType="4"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="0"
|
||||
PreprocessorDefinitions="WIN32;_DEBUG;_LIB;MSDOS"
|
||||
MinimalRebuild="TRUE"
|
||||
BasicRuntimeChecks="3"
|
||||
RuntimeLibrary="2"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
Detect64BitPortabilityProblems="TRUE"
|
||||
DebugInformationFormat="4"/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="$(OutDir)/ctf2c.lib"/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="../../../build/lib/i686-pc-win32"
|
||||
IntermediateDirectory="Release"
|
||||
ConfigurationType="4"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
PreprocessorDefinitions="WIN32;NDEBUG;_LIB;MSDOS"
|
||||
RuntimeLibrary="2"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
Detect64BitPortabilityProblems="TRUE"
|
||||
DebugInformationFormat="0"/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="$(OutDir)/ctf2c.lib"/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<References>
|
||||
</References>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
||||
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}">
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\abort_.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\backspac.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\c_abs.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\c_cos.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\c_div.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\c_exp.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\c_log.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\c_sin.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\c_sqrt.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\cabs.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\close.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\d_abs.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\d_acos.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\d_asin.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\d_atan.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\d_atn2.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\d_cnjg.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\d_cos.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\d_cosh.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\d_dim.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\d_exp.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\d_imag.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\d_int.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\d_lg10.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\d_log.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\d_mod.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\d_nint.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\d_prod.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\d_sign.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\d_sin.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\d_sinh.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\d_sqrt.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\d_tan.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\d_tanh.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\derf_.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\derfc_.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\dfe.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\dolio.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\dtime_.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\due.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\ef1asc_.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\ef1cmc_.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\endfile.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\erf_.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\erfc_.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\err.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\etime_.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\exit_.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\f2c.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\f77_aloc.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\f77vers.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\fio.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\fmt.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\fmt.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\fmtlib.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\fp.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\ftell64_.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\ftell_.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\getarg_.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\getenv_.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\h_abs.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\h_dim.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\h_dnnt.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\h_indx.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\h_len.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\h_mod.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\h_nint.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\h_sign.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\hl_ge.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\hl_gt.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\hl_le.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\hl_lt.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\i77vers.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\i_abs.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\i_dim.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\i_dnnt.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\i_indx.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\i_len.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\i_mod.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\i_nint.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\i_sign.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\iargc_.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\iio.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\ilnw.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\inquire.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\l_ge.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\l_gt.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\l_le.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\l_lt.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\lbitbits.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\lbitshft.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\lio.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\lread.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\lwrite.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\main.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\open.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\pow_ci.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\pow_dd.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\pow_di.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\pow_hh.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\pow_ii.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\pow_qq.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\pow_ri.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\pow_zi.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\pow_zz.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\qbitbits.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\qbitshft.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\r_abs.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\r_acos.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\r_asin.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\r_atan.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\r_atn2.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\r_cnjg.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\r_cos.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\r_cosh.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\r_dim.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\r_exp.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\r_imag.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\r_int.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\r_lg10.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\r_log.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\r_mod.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\r_nint.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\r_sign.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\r_sin.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\r_sinh.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\r_sqrt.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\r_tan.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\r_tanh.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\rawio.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\rdfmt.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\rewind.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\rsfe.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\rsli.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\rsne.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\s_cat.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\s_cmp.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\s_copy.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\s_paus.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\s_rnge.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\s_stop.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\sfe.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\sig_die.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\signal_.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\signbit.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\sue.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\system_.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\typesize.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\uio.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\uninit.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\util.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\wref.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\wrtfmt.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\wsfe.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\wsle.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\wsne.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\xwsne.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\z_abs.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\z_cos.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\z_div.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\z_exp.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\z_log.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\z_sin.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\z_sqrt.c">
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Header Files"
|
||||
Filter="h;hpp;hxx;hm;inl;inc;xsd"
|
||||
UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}">
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\arith.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\signal1.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_libs\sysdep1.h">
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Resource Files"
|
||||
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
||||
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}">
|
||||
</Filter>
|
||||
<File
|
||||
RelativePath=".\ReadMe.txt">
|
||||
</File>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
2
win32/vc7/f2c_math/.cvsignore
Normal file
2
win32/vc7/f2c_math/.cvsignore
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
Debug
|
||||
ReadMe.txt
|
||||
194
win32/vc7/f2c_math/f2c_math.vcproj
Executable file
194
win32/vc7/f2c_math/f2c_math.vcproj
Executable file
|
|
@ -0,0 +1,194 @@
|
|||
<?xml version="1.0" encoding="Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="7.10"
|
||||
Name="f2c_math"
|
||||
ProjectGUID="{127547E3-416C-4C12-82E9-52F912142FB5}"
|
||||
Keyword="Win32Proj">
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"/>
|
||||
</Platforms>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="../../../build/lib/i686-pc-win32d"
|
||||
IntermediateDirectory="Debug"
|
||||
ConfigurationType="4"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="0"
|
||||
AdditionalIncludeDirectories="../../../ext/f2c_libs"
|
||||
PreprocessorDefinitions="WIN32;_DEBUG;_LIB"
|
||||
MinimalRebuild="TRUE"
|
||||
BasicRuntimeChecks="3"
|
||||
RuntimeLibrary="2"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
Detect64BitPortabilityProblems="TRUE"
|
||||
DebugInformationFormat="4"/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="$(OutDir)/ctmath.lib"/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="../../../build/lib/i686-pc-win32"
|
||||
IntermediateDirectory="Release"
|
||||
ConfigurationType="4"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalIncludeDirectories="../../../ext/f2c_libs"
|
||||
PreprocessorDefinitions="WIN32;NDEBUG;_LIB"
|
||||
RuntimeLibrary="2"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
Detect64BitPortabilityProblems="TRUE"
|
||||
DebugInformationFormat="0"/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="$(OutDir)/ctmath.lib"/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<References>
|
||||
</References>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
||||
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}">
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_math\daux.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_math\ddaspk.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_math\dgbefa.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_math\dgbsl.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_math\dgefa.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_math\dgesl.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_math\dp1vlu.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_math\dpcoef.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_math\dpolft.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_math\fdump.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_math\idamax.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_math\j4save.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_math\mach.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_math\pcoef.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_math\polfit.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_math\pvalue.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_math\xercnt.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_math\xerhlt.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_math\xermsg.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_math\xerprn.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_math\xersve.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_math\xgetua.c">
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Header Files"
|
||||
Filter="h;hpp;hxx;hm;inl;inc;xsd"
|
||||
UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}">
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_math\cblas.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_math\gmres.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_math\mkl_cblas.h">
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Resource Files"
|
||||
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
||||
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}">
|
||||
</Filter>
|
||||
<File
|
||||
RelativePath=".\ReadMe.txt">
|
||||
</File>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
2
win32/vc7/f2c_recipes/.cvsignore
Normal file
2
win32/vc7/f2c_recipes/.cvsignore
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
Debug
|
||||
ReadMe.txt
|
||||
143
win32/vc7/f2c_recipes/f2c_recipes.vcproj
Executable file
143
win32/vc7/f2c_recipes/f2c_recipes.vcproj
Executable file
|
|
@ -0,0 +1,143 @@
|
|||
<?xml version="1.0" encoding="Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="7.10"
|
||||
Name="f2c_recipes"
|
||||
ProjectGUID="{923DDCAC-E403-4421-B552-6188EE75B195}"
|
||||
Keyword="Win32Proj">
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"/>
|
||||
</Platforms>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="../../../build/lib/i686-pc-win32d"
|
||||
IntermediateDirectory="Debug"
|
||||
ConfigurationType="4"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="0"
|
||||
AdditionalIncludeDirectories="../../../ext/f2c_libs"
|
||||
PreprocessorDefinitions="WIN32;_DEBUG;_LIB"
|
||||
MinimalRebuild="TRUE"
|
||||
BasicRuntimeChecks="3"
|
||||
RuntimeLibrary="2"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
Detect64BitPortabilityProblems="TRUE"
|
||||
DebugInformationFormat="4"/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="$(OutDir)/recipes.lib"/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="../../../build/lib/i686-pc-win32"
|
||||
IntermediateDirectory="Release"
|
||||
ConfigurationType="4"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalIncludeDirectories="../../../ext/f2c_libs"
|
||||
PreprocessorDefinitions="WIN32;NDEBUG;_LIB"
|
||||
RuntimeLibrary="2"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
Detect64BitPortabilityProblems="TRUE"
|
||||
DebugInformationFormat="0"/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="$(OutDir)/recipes.lib"/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<References>
|
||||
</References>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
||||
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}">
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_recipes\simp1.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_recipes\simp2.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_recipes\simp3.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_recipes\simplx.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_recipes\splie2.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_recipes\splin2.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_recipes\spline.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\ext\f2c_recipes\splint.c">
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Header Files"
|
||||
Filter="h;hpp;hxx;hm;inl;inc;xsd"
|
||||
UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}">
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Resource Files"
|
||||
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
||||
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}">
|
||||
</Filter>
|
||||
<File
|
||||
RelativePath=".\ReadMe.txt">
|
||||
</File>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
3
win32/vc7/oneD/.cvsignore
Normal file
3
win32/vc7/oneD/.cvsignore
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
Debug
|
||||
Release
|
||||
ReadMe.txt
|
||||
177
win32/vc7/oneD/oneD.vcproj
Executable file
177
win32/vc7/oneD/oneD.vcproj
Executable file
|
|
@ -0,0 +1,177 @@
|
|||
<?xml version="1.0" encoding="Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="7.10"
|
||||
Name="oneD"
|
||||
ProjectGUID="{AFF4EF88-C100-4297-A150-B6C4C5A98F25}"
|
||||
Keyword="Win32Proj">
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"/>
|
||||
</Platforms>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="../../../build/lib/i686-pc-win32d"
|
||||
IntermediateDirectory="Debug"
|
||||
ConfigurationType="4"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="0"
|
||||
PreprocessorDefinitions="WIN32;_DEBUG;_LIB"
|
||||
MinimalRebuild="TRUE"
|
||||
BasicRuntimeChecks="3"
|
||||
RuntimeLibrary="2"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
Detect64BitPortabilityProblems="TRUE"
|
||||
DebugInformationFormat="4"/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="$(OutDir)/oneD.lib"/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="../../../build/lib/i686-pc-win32"
|
||||
IntermediateDirectory="Release"
|
||||
ConfigurationType="4"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
PreprocessorDefinitions="WIN32;NDEBUG;_LIB"
|
||||
RuntimeLibrary="2"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
Detect64BitPortabilityProblems="TRUE"
|
||||
DebugInformationFormat="0"/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="$(OutDir)/oneD.lib"/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<References>
|
||||
</References>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
||||
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}">
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\oneD\boundaries1D.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\oneD\MultiJac.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\oneD\MultiNewton.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\oneD\newton_utils.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\oneD\OneDim.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\oneD\refine.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\oneD\Sim1D.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\oneD\StFlow.cpp">
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Header Files"
|
||||
Filter="h;hpp;hxx;hm;inl;inc;xsd"
|
||||
UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}">
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\oneD\Domain1D.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\oneD\Inlet1D.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\oneD\Jac1D.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\oneD\MultiJac.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\oneD\MultiNewton.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\oneD\Newton1D.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\oneD\OneDim.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\oneD\refine.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\oneD\Resid1D.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\oneD\Sim1D.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\oneD\StFlow.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\Cantera\src\oneD\Surf1D.h">
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Resource Files"
|
||||
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
||||
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}">
|
||||
</Filter>
|
||||
<File
|
||||
RelativePath=".\ReadMe.txt">
|
||||
</File>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
92
win32/vc7/prepreconfig.vc++
Executable file
92
win32/vc7/prepreconfig.vc++
Executable file
|
|
@ -0,0 +1,92 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
#
|
||||
# Sample bourne shell wrapper around Cantera's configure
|
||||
# shell command, used for building and installing Cantera
|
||||
# using MS VC++, without fortran support.
|
||||
# Copy this file to the top directory of the Cantera distribution.
|
||||
# Edit a few directory locations indicated below. Then execute it
|
||||
# after autoconf is run.
|
||||
#
|
||||
# Tell Cantera you will be using a VC++ compiler to compile and link
|
||||
# all of the programs
|
||||
#
|
||||
USE_VISUAL_STUDIO="y"
|
||||
export USE_VISUAL_STUDIO
|
||||
#
|
||||
# Specify the root directory: Will need adjusting
|
||||
#
|
||||
CANTERA_ROOT="/cygwin/c/vc_env/cantera-1.7_develop"
|
||||
export CANTERA_ROOT
|
||||
#
|
||||
# Specify the install directory: Will need adjusting
|
||||
#
|
||||
CANTERA_INSTALL_DIR="C:/vc_env/Cantera"
|
||||
export CANTERA_INSTALL_DIR
|
||||
#
|
||||
#
|
||||
# PYTHON_CMD: This is the default location that Python24
|
||||
# puts its files.
|
||||
#
|
||||
PYTHON_CMD="c:/python24/python.exe"
|
||||
export PYTHON_CMD
|
||||
#
|
||||
# WIN_PYTHON_CMD: This is the default location that Python24
|
||||
# puts its files.
|
||||
#
|
||||
WIN_PYTHON_CMD='C:/Python24/python'
|
||||
export WIN_PYTHON_CMD
|
||||
#
|
||||
# These 2 next lines tells Cantera and Python where to install
|
||||
# the Cantera python modules.
|
||||
#
|
||||
SET_PYTHON_SITE_PACKAGE_TOPDIR=y
|
||||
export SET_PYTHON_SITE_PACKAGE_TOPDIR
|
||||
#
|
||||
PYTHON_SITE_PACKAGE_TOPDIR="C:\Python24"
|
||||
export PYTHON_SITE_PACKAGE_TOPDIR
|
||||
#
|
||||
# No matlab toolbox in this script. However, if you have matlab
|
||||
# on your machine, you can change the "n" to a "y".
|
||||
BUILD_MATLAB_TOOLBOX="n"
|
||||
export BUILD_MATLAB_TOOLBOX
|
||||
#
|
||||
# Indicate that you will be using the clib.dll
|
||||
#
|
||||
USE_DLL="y"
|
||||
export USE_DLL
|
||||
#
|
||||
# HKM -> note config chokes on cl.exe . It can't interpret the
|
||||
# needed command line arguments.
|
||||
#CXX="cl.exe"
|
||||
#export CXX
|
||||
#CC="cl.exe"
|
||||
#export CC
|
||||
#
|
||||
CXXFLAGS="-g"
|
||||
export CXXFLAGS
|
||||
#
|
||||
#
|
||||
LCXX_END_LIBS="-lm -lstdc++"
|
||||
export LCXX_END_LIBS
|
||||
#
|
||||
PYTHON_PACKAGE='full'
|
||||
#PYTHON_PACKAGE='minimal'
|
||||
export PYTHON_PACKAGE
|
||||
|
||||
WITH_IDEAL_SOLUTIONS="y"
|
||||
export WITH_IDEAL_SOLUTIONS
|
||||
|
||||
WITH_ELECTROLYTES="y"
|
||||
export WITH_ELECTROLYTES
|
||||
|
||||
WITH_VCSNONIDEAL="y"
|
||||
export WITH_VCSNONIDEAL
|
||||
|
||||
|
||||
#
|
||||
# Call the configure command at the top of the Cantera distribution
|
||||
# in a cygwin shell
|
||||
#
|
||||
./preconfig
|
||||
#
|
||||
2
win32/vc7/pycantera/.cvsignore
Normal file
2
win32/vc7/pycantera/.cvsignore
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
Debug
|
||||
ReadMe.txt
|
||||
145
win32/vc7/pycantera/pycantera.vcproj
Executable file
145
win32/vc7/pycantera/pycantera.vcproj
Executable file
|
|
@ -0,0 +1,145 @@
|
|||
<?xml version="1.0" encoding="Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="7.10"
|
||||
Name="pycantera"
|
||||
ProjectGUID="{D471BA73-82B0-4F6A-AEC7-171E7E56A184}"
|
||||
Keyword="Win32Proj">
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"/>
|
||||
</Platforms>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="Debug"
|
||||
IntermediateDirectory="Debug"
|
||||
ConfigurationType="2"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="0"
|
||||
AdditionalIncludeDirectories="C:\Python23\include;"C:\vcEnv\cantera-1.5_develop\Cantera\clib\src""
|
||||
PreprocessorDefinitions="WIN32;_WINDOWS;_USRDLL;PYCANTERA_EXPORTS"
|
||||
MinimalRebuild="TRUE"
|
||||
BasicRuntimeChecks="3"
|
||||
RuntimeLibrary="4"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
Detect64BitPortabilityProblems="TRUE"
|
||||
DebugInformationFormat="4"/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
AdditionalDependencies="cantera.lib oneD.lib zeroD.lib transport.lib converters.lib tpx.lib ctmath.lib ctlapack.lib ctblas.lib f2c.lib"
|
||||
OutputFile="$(OutDir)/pycantera.dll"
|
||||
LinkIncremental="1"
|
||||
SuppressStartupBanner="TRUE"
|
||||
AdditionalLibraryDirectories=""C:\vcEnv\cantera-1.5_develop\build\lib\i686-pc-win32";C:\Python23\libs"
|
||||
DelayLoadDLLs="clib.dll"
|
||||
GenerateDebugInformation="TRUE"
|
||||
ProgramDatabaseFile="$(OutDir)/pycantera.pdb"
|
||||
SubSystem="2"
|
||||
ImportLibrary="$(OutDir)/pycantera.lib"
|
||||
TargetMachine="1"/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCWebDeploymentTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="Release"
|
||||
IntermediateDirectory="Release"
|
||||
ConfigurationType="2"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL;PYCANTERA_EXPORTS"
|
||||
RuntimeLibrary="0"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
Detect64BitPortabilityProblems="TRUE"
|
||||
DebugInformationFormat="3"/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
OutputFile="$(OutDir)/pycantera.dll"
|
||||
LinkIncremental="1"
|
||||
GenerateDebugInformation="TRUE"
|
||||
SubSystem="2"
|
||||
OptimizeReferences="2"
|
||||
EnableCOMDATFolding="2"
|
||||
ImportLibrary="$(OutDir)/pycantera.lib"
|
||||
TargetMachine="1"/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCWebDeploymentTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<References>
|
||||
</References>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
||||
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}">
|
||||
<File
|
||||
RelativePath="..\..\Cantera\python\src\pycantera.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\Cantera\python\src\writelog.cpp">
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Header Files"
|
||||
Filter="h;hpp;hxx;hm;inl;inc;xsd"
|
||||
UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}">
|
||||
<File
|
||||
RelativePath="..\..\Cantera\clib\src\ct.h">
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Resource Files"
|
||||
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
||||
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}">
|
||||
</Filter>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
2
win32/vc7/silane_equil/.cvsignore
Normal file
2
win32/vc7/silane_equil/.cvsignore
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
Debug
|
||||
ReadMe.txt
|
||||
138
win32/vc7/silane_equil/silane_equil.vcproj
Executable file
138
win32/vc7/silane_equil/silane_equil.vcproj
Executable file
|
|
@ -0,0 +1,138 @@
|
|||
<?xml version="1.0" encoding="Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="7.10"
|
||||
Name="silane_equil"
|
||||
ProjectGUID="{290DC5E5-0016-4CCF-84D5-6B997DD3664A}"
|
||||
Keyword="Win32Proj">
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"/>
|
||||
</Platforms>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="../../../test_problems/silane_equil"
|
||||
IntermediateDirectory="Debug"
|
||||
ConfigurationType="1"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="0"
|
||||
AdditionalIncludeDirectories="../../../build/include/Cantera"
|
||||
PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE"
|
||||
MinimalRebuild="TRUE"
|
||||
BasicRuntimeChecks="3"
|
||||
RuntimeLibrary="5"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
Detect64BitPortabilityProblems="TRUE"
|
||||
DebugInformationFormat="4"/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
AdditionalDependencies="cantera.lib tpx.lib ctcxx.lib recipes.lib ctlapack.lib ctblas.lib ctf2c.lib"
|
||||
OutputFile="$(OutDir)/silane_equil.exe"
|
||||
LinkIncremental="2"
|
||||
AdditionalLibraryDirectories="../../../build/lib/i686-pc-win32d"
|
||||
GenerateDebugInformation="TRUE"
|
||||
ProgramDatabaseFile="$(OutDir)/silane_equil.pdb"
|
||||
SubSystem="1"
|
||||
TargetMachine="1"/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCWebDeploymentTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="../../../test_problems/silane_equil"
|
||||
IntermediateDirectory="Release"
|
||||
ConfigurationType="1"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalIncludeDirectories="../../../build/include/Cantera"
|
||||
PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE"
|
||||
RuntimeLibrary="4"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
Detect64BitPortabilityProblems="TRUE"
|
||||
DebugInformationFormat="3"/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
AdditionalDependencies="cantera.lib tpx.lib cxxutils.lib f2c_recipes.lib f2c_lapack.lib f2c_blas.lib f2c.lib"
|
||||
OutputFile="$(OutDir)/silane_equil.exe"
|
||||
LinkIncremental="1"
|
||||
AdditionalLibraryDirectories="../../../build/lib/i686-pc-win32"
|
||||
GenerateDebugInformation="TRUE"
|
||||
SubSystem="1"
|
||||
OptimizeReferences="2"
|
||||
EnableCOMDATFolding="2"
|
||||
TargetMachine="1"/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCWebDeploymentTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<References>
|
||||
</References>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
||||
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}">
|
||||
<File
|
||||
RelativePath="..\..\..\test_problems\silane_equil\silane_equil.cpp">
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Header Files"
|
||||
Filter="h;hpp;hxx;hm;inl;inc;xsd"
|
||||
UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}">
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Resource Files"
|
||||
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
||||
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}">
|
||||
</Filter>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
2
win32/vc7/surfkin/.cvsignore
Normal file
2
win32/vc7/surfkin/.cvsignore
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
Debug
|
||||
ReadMe.txt
|
||||
138
win32/vc7/surfkin/surfkin.vcproj
Executable file
138
win32/vc7/surfkin/surfkin.vcproj
Executable file
|
|
@ -0,0 +1,138 @@
|
|||
<?xml version="1.0" encoding="Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="7.10"
|
||||
Name="surfkin"
|
||||
ProjectGUID="{7A87791C-32F6-48B5-ADBB-A8E77DE13E16}"
|
||||
Keyword="Win32Proj">
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"/>
|
||||
</Platforms>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="../../../test_problems/surfkin"
|
||||
IntermediateDirectory="Debug"
|
||||
ConfigurationType="1"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="0"
|
||||
AdditionalIncludeDirectories="../../../build/include/Cantera"
|
||||
PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE"
|
||||
MinimalRebuild="TRUE"
|
||||
BasicRuntimeChecks="3"
|
||||
RuntimeLibrary="5"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
Detect64BitPortabilityProblems="TRUE"
|
||||
DebugInformationFormat="4"/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
AdditionalDependencies="cantera.lib tpx.lib ctcxx.lib cvode.lib"
|
||||
OutputFile="$(OutDir)/surfdemo.exe"
|
||||
LinkIncremental="2"
|
||||
AdditionalLibraryDirectories="../../../build/lib/i686-pc-win32"
|
||||
GenerateDebugInformation="TRUE"
|
||||
ProgramDatabaseFile="$(OutDir)/surfkin.pdb"
|
||||
SubSystem="1"
|
||||
TargetMachine="1"/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCWebDeploymentTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="Release"
|
||||
IntermediateDirectory="Release"
|
||||
ConfigurationType="1"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE"
|
||||
RuntimeLibrary="4"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
Detect64BitPortabilityProblems="TRUE"
|
||||
DebugInformationFormat="3"/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
OutputFile="$(OutDir)/surfkin.exe"
|
||||
LinkIncremental="1"
|
||||
GenerateDebugInformation="TRUE"
|
||||
SubSystem="1"
|
||||
OptimizeReferences="2"
|
||||
EnableCOMDATFolding="2"
|
||||
TargetMachine="1"/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCWebDeploymentTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<References>
|
||||
</References>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
||||
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}">
|
||||
<File
|
||||
RelativePath="..\..\..\test_problems\surfkin\surfdemo.cpp">
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Header Files"
|
||||
Filter="h;hpp;hxx;hm;inl;inc;xsd"
|
||||
UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}">
|
||||
<File
|
||||
RelativePath="..\..\..\test_problems\surfkin\Interface.h">
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Resource Files"
|
||||
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
||||
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}">
|
||||
</Filter>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
2
win32/vc7/tpx/.cvsignore
Normal file
2
win32/vc7/tpx/.cvsignore
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
Debug
|
||||
ReadMe.txt
|
||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue