Revision 3e170d6f8ffa9988586cc8a58373abca59aa236a authored by Dmitri Naumov on 10 March 2021, 10:05:23 UTC, committed by Dmitri Naumov on 10 March 2021, 12:34:28 UTC
In 6fceafaed "[PL/RM] Use initial stress in assemble()."
the rhs vector was changed, now including also stress
related parts, and not only the gravitational forces.

This changes only the NodalForces output, everything else
is exactly same as before.
1 parent 72d80ab
Raw File
CMakeLists.txt
# Source files grouped by a directory
get_source_files(SOURCES)
append_source_files(SOURCES PhreeqcIOData)
append_source_files(SOURCES PhreeqcKernelData)
append_source_files(SOURCES Common)

# Create the library
ogs_add_library(ChemistryLib ${SOURCES})

target_link_libraries(ChemistryLib PUBLIC iphreeqc PRIVATE NumLib spdlog::spdlog)

# See https://github.com/ufz/ogs/pull/2982#issuecomment-641086788
set_source_files_properties(PhreeqcIO.cpp
    CreateChemicalSolverInterface.cpp
    PhreeqcKernel.cpp
    PROPERTIES SKIP_UNITY_BUILD_INCLUSION TRUE)
back to top