Merge commit '63ca4c7ef4b0202b4b6c6cd3463158dc10bfa758'

This commit is contained in:
Darth Vader 2024-04-05 17:14:35 +00:00
commit 894d25fb5a

View File

@ -1,17 +1,17 @@
In Fortran, you will need to include the source file IPhreeqc_interface.F90 In Fortran, you will need to include the source file IPhreeqc_interface.F90
in your project files. This file defines the IPhreeqc Fortran module. This in your project files. This file defines the IPhreeqc Fortran module. This
is the preferred method to use IPhreeqc from a Fortran program. is the preferred method to use IPhreeqc from a Fortran program.
USE IPhreeqc USE IPhreeqc
INTEGER(KIND=4) id INTEGER(KIND=4) id
id = CreateIPhreeqc() id = CreateIPhreeqc()
Use of the include files IPhreeqc.f.inc and IPhreeqc.f90.inc has been Use of the include files IPhreeqc.f.inc and IPhreeqc.f90.inc has been
deprecated. To continue using them you must unset IPHREEQC_ENABLE_MODULE in deprecated. To continue using them you must unset IPHREEQC_ENABLE_MODULE in
CMake builds or use the --disable-fortran-module in configure builds. If CMake builds or use the --disable-fortran-module in configure builds. If
either of these settings are used the Fortran include files will be either of these settings are used the Fortran include files will be
installed to the include directory. installed to the include directory.
INCLUDE 'IPhreeqc.f90.inc' INCLUDE 'IPhreeqc.f90.inc'
INTEGER(KIND=4) id INTEGER(KIND=4) id
id = CreateIPhreeqc() id = CreateIPhreeqc()