File: CMakeLists.txt

package info (click to toggle)
cmake 3.25.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 121,376 kB
  • sloc: ansic: 361,053; cpp: 250,806; sh: 3,828; yacc: 3,243; python: 2,707; lex: 1,328; lisp: 382; asm: 371; f90: 314; java: 266; perl: 217; objc: 212; xml: 202; cs: 200; fortran: 131; makefile: 99; javascript: 83; pascal: 63; tcl: 55; php: 25; ruby: 22
file content (64 lines) | stat: -rw-r--r-- 2,296 bytes parent folder | download | duplicates (4)
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
cmake_minimum_required (VERSION 3.18...3.19)

project (TestVersionRange LANGUAGES C)


find_package (${Python} ${Python_REQUESTED_VERSION} EXACT COMPONENTS Interpreter)
if (NOT ${Python}_FOUND)
  message (FATAL_ERROR "Failed to find ${Python} ${Python_REQUESTED_VERSION}")
endif()

if (Python_REQUESTED_VERSION VERSION_LESS 3.0)
  set (IN_VERSION_RANGE 2.0...<3.0)
  set (OUT_VERSION_RANGE 2.0...<${${Python}_VERSION})
else()
  set (IN_VERSION_RANGE 3.0...<4.0)
  set (OUT_VERSION_RANGE 3.0...<${${Python}_VERSION})
endif()

function (FIND_PYTHON EXPECTED_VERSION RANGE)
  macro (FIND_PYTHON_PACKAGE)
    unset (_${Python}_EXECUTABLE CACHE)
    unset (_${Python}_LIBRARY_RELEASE CACHE)
    unset (_${Python}_INCLUDE_DIR CACHE)
    unset (${Python}_FOUND)

    find_package (${Python} ${ARGV})
  endmacro()

  find_python_package(${RANGE} ${ARGN})

  if (EXPECTED_VERSION STREQUAL "NONE")
    while (${Python}_FOUND AND ${Python}_VERSION VERSION_GREATER ${Python_REQUESTED_VERSION})
      # Possible if multiple versions are installed
      # Try with a different range
      find_python_package(${Python_REQUESTED_VERSION}.0...<${${Python}_VERSION} ${ARGN})
    endwhile()
    if (${Python}_FOUND)
      message (SEND_ERROR "Unexpectedly found version: ${${Python}_VERSION} for '${Python} ${Python_REQUESTED_VERSION}.0...<${${Python}_VERSION} ${ARGN}'")
    endif()
    return()
  endif()

  if (NOT ${Python}_FOUND)
    message (SEND_ERROR "Not found: ${Python} ${RANGE} ${ARGN}")
  elseif (NOT ${Python}_VERSION VERSION_EQUAL EXPECTED_VERSION)
    message (SEND_ERROR "Wrong version: ${${Python}_VERSION} for '${Python} ${RANGE} ${ARGN}'")
  endif()
endfunction()

find_python (${${Python}_VERSION} ${IN_VERSION_RANGE} COMPONENTS Interpreter)
if (${Python}_FIND_IMPLEMENTATIONS STREQUAL "IronPython")
  find_python (${${Python}_VERSION} ${IN_VERSION_RANGE} COMPONENTS Compiler)
else()
  find_python (${${Python}_VERSION} ${IN_VERSION_RANGE} COMPONENTS Development)
endif()

find_python ("NONE" ${OUT_VERSION_RANGE} COMPONENTS Interpreter)
if (${Python}_FIND_IMPLEMENTATIONS STREQUAL "IronPython")
  find_python ("NONE" ${OUT_VERSION_RANGE} COMPONENTS Compiler)
else()
  find_python ("NONE" ${OUT_VERSION_RANGE} COMPONENTS Development)
endif()

find_python ("NONE" 5...6 COMPONENTS Interpreter)