# ------------------------------------------------------------------------------ # OOMPH auto-inserted: warn once if user configures inside an existing build. if(EXISTS "${CMAKE_CURRENT_BINARY_DIR}/CMakeCache.txt" AND CMAKE_CURRENT_SOURCE_DIR STREQUAL CMAKE_SOURCE_DIR) message( WARNING "You're re-configuring an existing build tree. For a clean configuration, " "delete the whole build folder and start with a fresh directory.") endif() # ------------------------------------------------------------------------------ list(APPEND CMAKE_MESSAGE_INDENT " ") message(VERBOSE "Entered multi_domain subdirectory") cmake_minimum_required(VERSION 3.22 FATAL_ERROR) project(multi_domain C CXX Fortran) if(NOT oomphlib_FOUND) find_package(oomphlib CONFIG REQUIRED PATHS "../../../install") endif() include(CTest) set(SUBDIRS boussinesq_convection fsi_collapsible_channel fsi_osc_ring fsi_channel_with_leaflet turek_flag pseudo_solid_collapsible_tube) foreach(SUBDIR IN LISTS SUBDIRS) add_subdirectory(${SUBDIR}) endforeach() message(VERBOSE "Leaving multi_domain subdirectory") # ------------------------------------------------------------------------------