-
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.
Consolidating rsp files and updating docs with instructions to escape…
… @ character
- Loading branch information
1 parent
713cc5d
commit d1fb4dc
Showing
10 changed files
with
37 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -81,7 +81,8 @@ gprof | |
|
||
# Temp files | ||
~$*.docx | ||
*~ | ||
*.csv# | ||
|
||
# Docs | ||
docs/_build/ | ||
docs/_build/ |
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Build the model for debugging | ||
@debug | ||
options build | ||
options --profile debug | ||
options --flag "-Og -pg -Wall -fallow-argument-mismatch" | ||
|
||
# Build the model for release | ||
@release | ||
options build | ||
options --profile release | ||
options --flag "-O3 -fallow-argument-mismatch" | ||
|
||
# Run the debug model build | ||
@run | ||
options run | ||
options --profile debug | ||
options --flag "-Og -pg -Wall -fallow-argument-mismatch" | ||
|
||
# Install the release model build | ||
@install | ||
options install | ||
options --profile release | ||
options --flag "-O3 -fallow-argument-mismatch" |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
module VersionModule | ||
implicit none; character(len=17), parameter :: MODEL_VERSION = "0.0.4-24-gdf24b0b" | ||
implicit none | ||
character(len=17), parameter :: MODEL_VERSION = "0.0.4" | ||
end module |