-
Notifications
You must be signed in to change notification settings - Fork 117
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build(meson): add support for NetCDF in meson build system (#1412)
* rename PROFESSIONAL to EXTENDED version * add function to test if __WITH_NETCDF__ define * refactor is_pro to is_extended function that evaluates if either WITH_PETSC or WITH_NETCDF are defined * add -Dextended=true meson option that will eventually replace -Dparallel=true * set netcdf to required=false for windows * add `fortran-language-server` to MODFLOW 6 developer `environment.yml`
- Loading branch information
1 parent
30039eb
commit a73dd17
Showing
5 changed files
with
100 additions
and
23 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
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 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,4 +1,5 @@ | ||
option('parallel', type : 'boolean', value : false, description : 'Parallel build') | ||
option('extended', type : 'boolean', value : false, description : 'Extended build with external libraries') | ||
option('parallel', type : 'boolean', value : false, description : 'Extended parallel build') | ||
option('mpich', type : 'boolean', value : false, description : 'Use MPICH version of MPI') | ||
option('cray', type : 'boolean', value : false, description : 'Parallel build on CRAY with MPICH') | ||
option('cray', type : 'boolean', value : false, description : 'Extended build on CRAY with MPICH') | ||
option('buildname', type : 'string', value : 'mf6', description : 'Optional build name') |
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 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