File: FindNAG.cmake

package info (click to toggle)
eccodes 2.12.0-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 480,184 kB
  • sloc: ansic: 163,815; makefile: 21,266; sh: 8,507; python: 6,026; f90: 5,762; perl: 2,891; yacc: 818; lex: 356; cpp: 305; fortran: 116; awk: 66
file content (43 lines) | stat: -rw-r--r-- 1,556 bytes parent folder | download | duplicates (27)
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 2011- 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.

# - Try to find the NAG includes and library
# This module defines
#
#  NAG_FOUND         - System has NAG
#  NAG_INCLUDE_DIRS  - the NAG include directories
#  NAG_LIBRARIES     - the libraries needed to use NAG
#
# The following paths will be searched with priority if set in CMake or env
#
#  NAG_DIR   - root folder of the NAG installation
#  NAG_PATH  - root folder of the NAG installation

find_path( NAG_INCLUDE_DIR nag_precisions.mod
           PATHS ${NAG_PATH} ENV NAG_PATH
                 ${NAG_DIR}  ENV NAG_DIR
           PATH_SUFFIXES include
           NO_DEFAULT_PATH )

find_library( NAG_LIBRARY NAMES nag
              PATHS ${NAG_PATH} ENV NAG_PATH
                    ${NAG_DIR}  ENV NAG_DIR
              PATH_SUFFIXES lib lib64
              NO_DEFAULT_PATH )

set( NAG_LIBRARIES    ${NAG_LIBRARY} )
set( NAG_INCLUDE_DIRS ${NAG_INCLUDE_DIR} )

include(FindPackageHandleStandardArgs)

# handle the QUIETLY and REQUIRED arguments and set NAG_FOUND to TRUE
# if all listed variables are TRUE
find_package_handle_standard_args( NAG DEFAULT_MSG
                                   NAG_LIBRARY NAG_INCLUDE_DIR )

mark_as_advanced( NAG_INCLUDE_DIR NAG_LIBRARY )