https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: c42e210be6d1c3fb1b0edb2c8ad0b8405a1363cd authored by Dmitry Yu. Naumov on 15 June 2021, 19:24:40 UTC
Merge branch 'LisFixes' into 'master'
Tip revision: c42e210
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