Skip to content
9 changes: 7 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -207,9 +207,14 @@ target_include_directories(ccpp_physics PUBLIC

target_link_libraries(ccpp_physics PRIVATE MPI::MPI_Fortran)
target_link_libraries(ccpp_physics PUBLIC w3emc::w3emc_d
sp::sp_d
NetCDF::NetCDF_Fortran
)
)
if(ip_FOUND)
target_link_libraries(ccpp_physics PUBLIC ip::ip_d)
else()
target_link_libraries(ccpp_physics PUBLIC sp::sp_d)
endif()
Comment thread
BrianCurtis-NOAA marked this conversation as resolved.

#add FMS for FV3 only
if(FV3 OR MPAS)
target_link_libraries(ccpp_physics PUBLIC fms)
Expand Down
1 change: 1 addition & 0 deletions physics/Interstitials/UFS_SCM_NEPTUNE/sfcsub.F
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
!! and setrmsk().
module sfccyc_module
use machine , only : kind_io8,kind_io4
use sp_mod
implicit none
save

Expand Down
2 changes: 1 addition & 1 deletion physics/SFC_Layer/MYNN/MYNN
Loading