File: Findecbuild.cmake

package info (click to toggle)
metview 5.26.1-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 614,288 kB
  • sloc: cpp: 560,215; ansic: 44,633; xml: 19,933; f90: 17,905; sh: 7,269; python: 5,565; yacc: 2,318; lex: 1,372; perl: 701; makefile: 87
file content (43 lines) | stat: -rw-r--r-- 1,335 bytes parent folder | download | duplicates (14)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# (C) Copyright 2019- 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.

find_path(ecbuild_MACROS_DIR ecbuild.cmake
    HINTS
        ${CMAKE_CURRENT_LIST_DIR}
    PATH_SUFFIXES
        cmake
        share/cmake
        share/ecbuild/cmake
    NO_DEFAULT_PATH
    NO_CMAKE_FIND_ROOT_PATH)

if(ecbuild_MACROS_DIR)
    include(${ecbuild_MACROS_DIR}/ecbuild_parse_version.cmake)
    ecbuild_parse_version_file(${ecbuild_MACROS_DIR}/VERSION PREFIX ecbuild)
endif()

include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(ecbuild
    REQUIRED_VARS
        ecbuild_MACROS_DIR
    VERSION_VAR
        ecbuild_VERSION)

if(ecbuild_FOUND)
    include(ecbuild)
    find_path(ecbuild_DIR ecbuild-config.cmake
        HINTS
            ${CMAKE_CURRENT_LIST_DIR}/../
            ${CMAKE_CURRENT_LIST_DIR}/../../../
        PATH_SUFFIXES
            lib/cmake/ecbuild
            lib64/cmake/ecbuild
            lib/${CMAKE_LIBRARY_ARCHITECTURE}/cmake/ecbuild
        NO_DEFAULT_PATH
        NO_CMAKE_FIND_ROOT_PATH)
endif()