-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #148 from climbfuji/umbrella_modulefile_and_shells…
…cripts release/public-v2: add NCEPLIBS umbrella modulefile and shell scripts for SRW App release
- Loading branch information
Showing
45 changed files
with
524 additions
and
438 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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[submodule "CMakeModules"] | ||
path = CMakeModules | ||
url = https://github.com/NOAA-EMC/CMakeModules |
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
Submodule CMakeModules
added at
186586
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 +1 @@ | ||
1.2.0 | ||
2.0.0 |
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
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
#%Module###################################################################### | ||
|
||
proc ModulesHelp { } { | ||
puts "Set environment variables for #NAME#-#VERSION#" | ||
} | ||
|
||
# Make sure another version of the same package is not already loaded | ||
conflict #NAME# | ||
|
||
setenv #NAME#_ROOT "#NCEPLIBS_ROOT#" | ||
setenv #NAME#_VERSION "#VERSION#" | ||
|
||
prepend-path CMAKE_PREFIX_PATH "#NCEPLIBS_ROOT#" | ||
prepend-path PATH "#NCEPLIBS_ROOT#/bin" | ||
|
||
setenv CC "#CC#" | ||
setenv CXX "#CXX#" | ||
setenv FC "#FC#" | ||
|
||
setenv NETCDF "#NETCDF#" | ||
setenv ESMFMKFILE "#ESMFMKFILE#" | ||
|
||
# Module load commands |
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
#%Module###################################################################### | ||
|
||
proc ModulesHelp { } { | ||
puts "Set environment variables for #NAME#-#VERSION#" | ||
} | ||
|
||
# Make sure another version of the same package is not already loaded | ||
conflict #NAME# | ||
|
||
# Set environment variables | ||
set base "#NCEPLIBS_ROOT#/#NAME#-#VERSION#" | ||
|
||
setenv #NAME#_ROOT "${base}" | ||
setenv #NAME#_VERSION "#VERSION#" | ||
|
||
setenv BACIO_INC4 "${base}/include_4" | ||
setenv BACIO_INC8 "${base}/include_8" | ||
setenv BACIO_LIB4 "${base}/lib/libbacio_4.a" | ||
setenv BACIO_LIB8 "${base}/lib/libbacio_8.a" |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.