You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
###########################################################################
### CMake Build System for the Parametric Hurricane Model (PaHM)
###
### Author: Panagiotis Velissariou <[email protected]>
###
### DEFINITIONS FOR THE "linux" ENVIRONMENT THAT USES THE GNU COMPILERS
###########################################################################
###========================================
### Check the environment and set required variables
###========================================
include(PlatformFuncs)
########## BEG:: CHECK FOR HDF5 ##########
get_env_hdf5()
if(NOT _DEFINED_HDF5)
#Do nothing
endif()
########## END:: CHECK FOR HDF5 ##########
########## BEG:: CHECK FOR NETCDF ##########
get_env_netcdf()
if(NOT _DEFINED_NETCDF)
#message(FATAL_ERROR "Couldn't find any of the NETCDF* environment variables.\n"
# "Load the appropriate NetCDF environment module before running cmake.")
endif()
########## END:: CHECK FOR NETCDF ##########
The text was updated successfully, but these errors were encountered: