From 023215ca849ebdb7c13b8e3aee24f03e63d3f975 Mon Sep 17 00:00:00 2001 From: Matthew Thompson Date: Wed, 16 Jun 2021 10:53:03 -0400 Subject: [PATCH] Add option to use microphysics from FV --- CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index e03008c..74b8ba5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -38,6 +38,9 @@ add_definitions(-Dsys${CMAKE_SYSTEM_NAME} -DESMA64) add_definitions(${MPI_Fortran_COMPILE_FLAGS}) include_directories(${MPI_Fortran_INCLUDE_PATH}) +# For GEOSfvdycore, we need to use the GFDL from fvdycore +option(USE_GFDL_MP_FROM_FV "Use GFDL microphysics from fvdycore" ON) + # Recursively build source tree add_subdirectory (@env) add_subdirectory (src)