-
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.
⚙️ Reduce goldilock default build by introducing BUILD_TESTING and ma…
…king tests builds optional. When HFC provisions goldilock on a platform where pre-released binaries are incompatible, it builds with default CMake flags, which did build all test with it which is wasteful in such scenario. CMake common practice is to rely on BUILD_TESTING, which would be automatically defined when doing `include(CTest)`, this would however set a BUILD_TESTING option with the default to ON - c.f. https://cmake.org/cmake/help/latest/module/CTest.html We think that especially for goldilock which is more like a dependency than a main project being worked on for it's main target audience we prefer BUILD_TESTING being OFF by default.
- Loading branch information
1 parent
9fd76b4
commit 869133a
Showing
3 changed files
with
18 additions
and
13 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