https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: a84228dc914a583c1d7e5882cf7a7c743f5b4337 authored by wenqing on 15 April 2021, 08:00:08 UTC
Merge branch 'fix_node_source_term' into 'master'
Tip revision: a84228d
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