https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: 1cff364d02d007106dc505ef6b6c268623a45af3 authored by Dominik Kern on 23 November 2021, 20:19:03 UTC
Merge branch 'add_coupling_scheme_paramter_with_docu' into 'master'
Tip revision: 1cff364
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