https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: ccd7e321dfa91b05eddac5864df55263b944c2dd authored by wenqing on 12 May 2021, 10:04:07 UTC
Merge branch 'fix_MPL' into 'master'
Tip revision: ccd7e32
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