summaryrefslogtreecommitdiffstats
path: root/cmake/modules/FindFFTW.cmake
blob: 7dea79e5b3054e5c59a3df2c528695cdf6031cf0 (plain)
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# This file is part of Mixxx, Digital DJ'ing software.
# Copyright (C) 2001-2020 Mixxx Development Team
# Distributed under the GNU General Public Licence (GPL) version 2 or any later
# later version. See the LICENSE file for details.

#[=======================================================================[.rst:
FindFFTW
--------

Finds the FFTW library.

Imported Targets
^^^^^^^^^^^^^^^^

This module provides the following imported targets, if found:

``FFTW::FFTW``
  The FFTW library

Result Variables
^^^^^^^^^^^^^^^^

This will define the following variables:

``FFTW_FOUND``
  True if the system has the FFTW library.
``FFTW_INCLUDE_DIRS``
  Include directories needed to use FFTW.
``FFTW_LIBRARIES``
  Libraries needed to link to FFTW.

Cache Variables
^^^^^^^^^^^^^^^

The following cache variables may also be set:

``FFTW_INCLUDE_DIR``
  The directory containing ``fftw3.h``.
``FFTW_LIBRARY``
  The path to the FFTW library.

#]=======================================================================]

find_path(FFTW_INCLUDE_DIR
  NAMES fftw3.h
  DOC "FFTW include directory")
mark_as_advanced(FFTW_INCLUDE_DIR)

find_library(FFTW_LIBRARY
  NAMES fftw fftw3 fftw-3.3
  DOC "FFTW library"
)
mark_as_advanced(FFTW_LIBRARY)

include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(
  FFTW
  DEFAULT_MSG
  FFTW_LIBRARY
  FFTW_INCLUDE_DIR
)

if(FFTW_FOUND)
  set(FFTW_LIBRARIES "${FFTW_LIBRARY}")
  set(FFTW_INCLUDE_DIRS "${FFTW_INCLUDE_DIR}")

  if(NOT TARGET FFTW::FFTW)
    add_library(FFTW::FFTW UNKNOWN IMPORTED)
    set_target_properties(FFTW::FFTW
      PROPERTIES
        IMPORTED_LOCATION "${FFTW_LIBRARY}"
        INTERFACE_INCLUDE_DIRECTORIES "${FFTW_INCLUDE_DIR}"
    )
  endif()
endif()