https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: ffe919067a85d2690b0b55d1bb6a71977c1fe5df authored by Lars Bilke on 17 June 2021, 13:02:33 UTC
[ci] Generate coverage vis.
Tip revision: ffe9190
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