https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: cb53e9247fa3c9142b71a51e89973703ef99a77f authored by wenqing on 19 February 2021, 14:44:27 UTC
Merge branch 'somerton_thermal_K' into 'master'
Tip revision: cb53e92
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(BUILD_TESTING)
    include(HydroMechanics/Tests.cmake)
    include(SmallDeformation/Tests.cmake)
endif()
back to top