https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: f4182c8caa0535bd4c64d3345cfc0afcb9f6fe72 authored by Lars Bilke on 25 March 2021, 07:32:10 UTC
Merge branch 'fix-cmake-realpath' into 'master'
Tip revision: f4182c8
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