-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Extra guards for CMAKE, extra configurations for Travis. * Modification to requirements. * Bug fix. * Fixed unset syntax. * Skip make test option. * Typo in run fortran * Syntax error near if. * Fixed another syntax error.
- Loading branch information
1 parent
b56d6e5
commit 399cf2a
Showing
7 changed files
with
66 additions
and
34 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
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
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,5 +1,10 @@ | ||
if [[ "$TESTOS" == "OSX" ]]; then | ||
cmake -DCMAKE_TOOLCHAIN_FILE=../Targets/Mac-python2.cmake .. ; | ||
else | ||
cmake -DCMAKE_TOOLCHAIN_FILE=../Targets/Linux.cmake .. ; | ||
if [ -z ${FORTRAN_ONLY+x} ]; then | ||
cmake -DCMAKE_TOOLCHAIN_FILE=../Targets/Linux.cmake .. ; | ||
else | ||
cmake -DCMAKE_TOOLCHAIN_FILE=../Targets/Linux.cmake \ | ||
-DFORTRAN_ONLY=YES .. ; | ||
fi | ||
fi |