-
Notifications
You must be signed in to change notification settings - Fork 573
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Sacado: Add option for turning off Gtest if desired.
This adds the option Sacado_ENABLE_GTest for turning off the Sacado GTest suite (previously it was required if tests were turned on). The included gtest does not build on all platforms (for various reasons), so this allows one to turn it off. For issue #7778
- Loading branch information
Showing
2 changed files
with
8 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
ADD_SUBDIRECTORY(GTestSuite) | ||
IF (Sacado_ENABLE_GTest) | ||
ADD_SUBDIRECTORY(GTestSuite) | ||
ENDIF() | ||
ADD_SUBDIRECTORY(UnitTests) | ||
ADD_SUBDIRECTORY(tradoptest) | ||
ADD_SUBDIRECTORY(performance) |