This repository was archived by the owner on Aug 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
commented out the netcdf-fortran library
- Loading branch information
Showing
2 changed files
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
# Find NetCDF if not already found | ||
IF(NOT NETCDF_FOUND) | ||
ENABLE_LANGUAGE(C) # Some libraries need a C compiler to find | ||
FIND_PACKAGE(NETCDF REQUIRED) | ||
ENABLE_LANGUAGE(C) # Some libraries need a C compiler to find | ||
FIND_PACKAGE(netcdf REQUIRED) | ||
SET(NETCDF_FOUND TRUE CACHE INTERNAL "NETCDF was found" FORCE) | ||
SET(NETCDFFORTRAN_FOUND TRUE CACHE INTERNAL "NETCDFFORTRAN was found" FORCE) | ||
SET(NETCDF_LIBRARIES ${NETCDF_LIBRARIES} CACHE INTERNAL "NETCDF LIBS" FORCE) | ||
SET(NETCDFFORTRAN_LIBRARIES ${NETCDFFORTRAN_LIBRARIES} CACHE INTERNAL "NETCDFFORTRAN LIBS" FORCE) | ||
#SET(NETCDFFORTRAN_FOUND TRUE CACHE INTERNAL "NETCDF-FORTRAN was found" FORCE) | ||
#SET(NETCDFFORTRAN_LIBRARIES ${NETCDFFORTRAN_LIBRARIES} CACHE INTERNAL "NETCDFFORTRAN LIBS" FORCE) | ||
ENDIF(NOT NETCDF_FOUND) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters