-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Silence CMake warnings regarding the policies: CMP0046, CMP0144 and CMP0148
- Loading branch information
Showing
5 changed files
with
39 additions
and
25 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# | ||
# Copyright 2009- ECMWF. | ||
# | ||
# This software is licensed under the terms of the Apache Licence version 2.0 | ||
# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. | ||
# In applying this licence, ECMWF does not waive the privileges and immunities | ||
# granted to it by virtue of its status as an intergovernmental organisation | ||
# nor does it submit to any jurisdiction. | ||
# | ||
|
||
# ========================================================================================= | ||
# Setup project-wide CMake Policies | ||
# ========================================================================================= | ||
|
||
# | ||
# CMake Policy CMP0144 (CMake >=3.27) | ||
# | ||
# OLD behaviour: | ||
# find_package(PackageName) used only case-preserved <PackageName>_ROOT variables | ||
# | ||
# NEW behaviour: | ||
# find_package(PackageName) uses upper-case <PACKAGENAME>_ROOT variables, | ||
# in addition to <PackageName>_ROOT variables. | ||
# | ||
if(POLICY CMP0144) | ||
cmake_policy(SET CMP0144 NEW) | ||
endif() |