1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
|
# ---------------------------------------------------------------
# Programmer(s): David J. Gardner and Slaven Peles @ LLNL
# ---------------------------------------------------------------
# SUNDIALS Copyright Start
# Copyright (c) 2002-2022, Lawrence Livermore National Security
# and Southern Methodist University.
# All rights reserved.
#
# See the top-level LICENSE and NOTICE files for details.
#
# SPDX-License-Identifier: BSD-3-Clause
# SUNDIALS Copyright End
# ---------------------------------------------------------------
# examples/arkode level CMakeLists.txt for SUNDIALS
# ---------------------------------------------------------------
# C examples
if(EXAMPLES_ENABLE_C)
add_subdirectory(C_serial)
add_subdirectory(C_manyvector)
if(ENABLE_OPENMP AND OPENMP_FOUND)
add_subdirectory(C_openmp)
endif()
if(ENABLE_OPENMP_DEVICE AND OPENMP_FOUND AND OPENMP_SUPPORTS_DEVICE_OFFLOADING)
add_subdirectory(C_openmpdev)
endif()
if(ENABLE_MPI AND MPI_C_FOUND)
add_subdirectory(C_parallel)
endif()
if(ENABLE_HYPRE AND HYPRE_FOUND)
add_subdirectory(C_parhyp)
endif()
if(ENABLE_PETSC AND PETSC_FOUND)
add_subdirectory(C_petsc)
endif()
endif()
# C++ examples
if(EXAMPLES_ENABLE_CXX)
add_subdirectory(CXX_serial)
if(ENABLE_MPI AND MPI_CXX_FOUND)
add_subdirectory(CXX_parallel)
endif()
if(ENABLE_MPI AND MPI_CXX_FOUND AND ENABLE_HYPRE AND HYPRE_FOUND)
add_subdirectory(CXX_parhyp)
endif()
if(MPI_CXX_FOUND AND ENABLE_SUPERLUDIST)
add_subdirectory(CXX_superludist)
endif()
if(ENABLE_XBRAID)
add_subdirectory(CXX_xbraid)
endif()
endif()
# F2003 examples
if(BUILD_FORTRAN_MODULE_INTERFACE AND EXAMPLES_ENABLE_F2003)
add_subdirectory(F2003_serial)
add_subdirectory(F2003_custom)
if(ENABLE_MPI AND MPI_Fortran_FOUND)
add_subdirectory(F2003_parallel)
endif()
endif()
|