https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: 43b7b324028633f74f581a66b756706bab01363f authored by Dmitri Naumov on 27 May 2021, 08:41:16 UTC
[AppL] Add missing include.
Tip revision: 43b7b32
CMakeLists.txt
get_source_files(SOURCES)

# It should be removed too for other MPI based DDC approach in future.
if(NOT OGS_USE_PETSC)
    list(REMOVE_ITEM SOURCES NodePartitionedMesh.h)
endif()

append_source_files(SOURCES MeshEditing)
append_source_files(SOURCES MeshGenerators)
append_source_files(SOURCES MeshSearch)
append_source_files(SOURCES Elements)
append_source_files(SOURCES IO)
append_source_files(SOURCES IO/Legacy)
append_source_files(SOURCES IO/VtkIO)
append_source_files(SOURCES Utils)
if(OGS_USE_XDMF)
    append_source_files(SOURCES IO/XDMF)
    if(OGS_USE_PETSC)
        append_source_files(SOURCES IO/XDMF/mpi)
    else()
        append_source_files(SOURCES IO/XDMF/posix)
    endif()
endif()
append_source_files(SOURCES MeshQuality)
append_source_files(SOURCES Vtk)

# It could be used for other MPI based DDC approach in future.
if(OGS_USE_PETSC)
    append_source_files(SOURCES IO/MPI_IO)
endif()

# Create the library
ogs_add_library(MeshLib ${SOURCES})

target_link_libraries(
    MeshLib
    PUBLIC BaseLib
           GeoLib
           GitInfoLib
           MathLib
           ${VTK_LIBRARIES}
           $<$<TARGET_EXISTS:OgsXdmf>:OgsXdmf>
           $<$<TARGET_EXISTS:MPI::MPI_CXX>:MPI::MPI_CXX>
           $<$<TARGET_EXISTS:petsc>:petsc>
    PRIVATE spdlog::spdlog
)

target_include_directories(MeshLib PUBLIC ${VTK_INCLUDE_DIRS})

target_compile_definitions(
    MeshLib
    PUBLIC
        $<$<AND:$<BOOL:$ENV{VTK_USE_64BIT_IDS}>,$<NOT:$<BOOL:VTK_ADDED>>>:VTK_USE_64BIT_IDS>
    PRIVATE $<$<BOOL:${OGS_USE_XDMF}>:OGS_USE_XDMF>
)
back to top