https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: 1497297b59279675b70314e91abcc19f1b4a987b authored by Dmitri Naumov on 08 September 2021, 14:02:09 UTC
[T/TH2M] Slightly relax test tolerances.
Tip revision: 1497297
CMakeLists.txt
add_subdirectory(Common)
get_source_files(SOURCES HydroMechanics)
append_source_files(SOURCES HydroMechanics/LocalAssembler)
append_source_files(SOURCES SmallDeformation)
append_source_files(SOURCES SmallDeformation/LocalAssembler)

ogs_add_library(LIE ${SOURCES})
target_link_libraries(LIE PUBLIC ProcessLib LIECommon PRIVATE ParameterLib)

if(OGS_BUILD_TESTING)
    include(HydroMechanics/Tests.cmake)
    include(SmallDeformation/Tests.cmake)
endif()
back to top