Using these steps:
# Clone the WRF-Hydro repository and set up the build
git clone
https://github.com/NCAR/wrf_hydro_nwm_public.git cd wrf_hydro_nwm_public
mkdir -p build
cd build
# Run CMake configuration for WRF-Hydro with specified options
cmake .. \
-DSPATIAL_SOIL=1 \
-DWRF_HYDRO=1 \
-DWRF_HYDRO_NUDGING=1 \
-DWRFIO_NCD_LARGE_FILE_SUPPORT=1 \
-DCMAKE_Fortran_COMPILER=ifx
# Compile using specified CPU settings
make -j "$CPU_QUARTER_EVEN" 2>&1 | tee make.log
I get this output:

In the previous build there was a .exe for noahMP. Did that get removed?