Blame view

FindPyQt4.cmake 1.94 KB
de89d3bc   dmayerich   Initial commit.
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
  # Find PyQt4
  # ~~~~~~~~~~
  # Copyright (c) 2007-2008, Simon Edwards <simon@simonzone.com>
  # Redistribution and use is allowed according to the terms of the BSD license.
  # For details see the accompanying COPYING-CMAKE-SCRIPTS file.
  #
  # PyQt4 website: http://www.riverbankcomputing.co.uk/pyqt/index.php
  #
  # Find the installed version of PyQt4. FindPyQt4 should only be called after
  # Python has been found.
  #
  # This file defines the following variables:
  #
  # PYQT4_VERSION - The version of PyQt4 found expressed as a 6 digit hex number
  #     suitable for comparision as a string
  #
  # PYQT4_VERSION_STR - The version of PyQt4 as a human readable string.
  #
  # PYQT4_VERSION_TAG - The PyQt version tag using by PyQt's sip files.
  #
  # PYQT4_SIP_DIR - The directory holding the PyQt4 .sip files.
  #
  # PYQT4_SIP_FLAGS - The SIP flags used to build PyQt.
  
  IF(EXISTS PYQT4_VERSION)
    # Already in cache, be silent
    SET(PYQT4_FOUND TRUE)
  ELSE(EXISTS PYQT4_VERSION)
  
    FIND_FILE(_find_pyqt_py FindPyQt.py PATHS ${CMAKE_MODULE_PATH})
  
    EXECUTE_PROCESS(COMMAND ${PYTHON_EXECUTABLE} ${_find_pyqt_py} OUTPUT_VARIABLE pyqt_config)
    IF(pyqt_config)
      STRING(REGEX REPLACE "^pyqt_version:([^\n]+).*$" "\\1" PYQT4_VERSION ${pyqt_config})
      STRING(REGEX REPLACE ".*\npyqt_version_str:([^\n]+).*$" "\\1" PYQT4_VERSION_STR ${pyqt_config})
      STRING(REGEX REPLACE ".*\npyqt_version_tag:([^\n]+).*$" "\\1" PYQT4_VERSION_TAG ${pyqt_config})
      STRING(REGEX REPLACE ".*\npyqt_sip_dir:([^\n]+).*$" "\\1" PYQT4_SIP_DIR ${pyqt_config})
      STRING(REGEX REPLACE ".*\npyqt_sip_flags:([^\n]+).*$" "\\1" PYQT4_SIP_FLAGS ${pyqt_config})
  
      SET(PYQT4_FOUND TRUE)
    ENDIF(pyqt_config)
  
    IF(PYQT4_FOUND)
      IF(NOT PYQT4_FIND_QUIETLY)
        MESSAGE(STATUS "Found PyQt4 version: ${PYQT4_VERSION_STR}")
      ENDIF(NOT PYQT4_FIND_QUIETLY)
    ELSE(PYQT4_FOUND)
      IF(PYQT4_FIND_REQUIRED)
        MESSAGE(FATAL_ERROR "Could not find Python")
      ENDIF(PYQT4_FIND_REQUIRED)
    ENDIF(PYQT4_FOUND)
  
  ENDIF(EXISTS PYQT4_VERSION)