FindSWIG.cmake 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. #.rst:
  2. # FindSWIG
  3. # --------
  4. #
  5. # Find SWIG
  6. #
  7. # This module finds an installed SWIG. It sets the following variables:
  8. #
  9. # ::
  10. #
  11. # SWIG_FOUND - set to true if SWIG is found
  12. # SWIG_DIR - the directory where swig is installed
  13. # SWIG_EXECUTABLE - the path to the swig executable
  14. # SWIG_VERSION - the version number of the swig executable
  15. #
  16. #
  17. #
  18. # The minimum required version of SWIG can be specified using the
  19. # standard syntax, e.g. find_package(SWIG 1.1)
  20. #
  21. # All information is collected from the SWIG_EXECUTABLE so the version
  22. # to be found can be changed from the command line by means of setting
  23. # SWIG_EXECUTABLE
  24. #=============================================================================
  25. # Copyright 2004-2009 Kitware, Inc.
  26. # Copyright 2011 Mathieu Malaterre <mathieu.malaterre@gmail.com>
  27. # Copyright 2014 Sylvain Joubert <joubert.sy@gmail.com>
  28. #
  29. # Distributed under the OSI-approved BSD License (the "License");
  30. # see accompanying file Copyright.txt for details.
  31. #
  32. # This software is distributed WITHOUT ANY WARRANTY; without even the
  33. # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  34. # See the License for more information.
  35. #=============================================================================
  36. # (To distribute this file outside of CMake, substitute the full
  37. # License text for the above reference.)
  38. find_program(SWIG_EXECUTABLE NAMES swig3.0 swig2.0 swig)
  39. if(SWIG_EXECUTABLE)
  40. execute_process(COMMAND ${SWIG_EXECUTABLE} -swiglib
  41. OUTPUT_VARIABLE SWIG_swiglib_output
  42. ERROR_VARIABLE SWIG_swiglib_error
  43. RESULT_VARIABLE SWIG_swiglib_result)
  44. if(SWIG_swiglib_result)
  45. if(SWIG_FIND_REQUIRED)
  46. message(SEND_ERROR "Command \"${SWIG_EXECUTABLE} -swiglib\" failed with output:\n${SWIG_swiglib_error}")
  47. else()
  48. message(STATUS "Command \"${SWIG_EXECUTABLE} -swiglib\" failed with output:\n${SWIG_swiglib_error}")
  49. endif()
  50. else()
  51. string(REGEX REPLACE "[\n\r]+" ";" SWIG_swiglib_output ${SWIG_swiglib_output})
  52. find_path(SWIG_DIR swig.swg PATHS ${SWIG_swiglib_output} NO_CMAKE_FIND_ROOT_PATH)
  53. if(SWIG_DIR)
  54. set(SWIG_USE_FILE ${CMAKE_CURRENT_LIST_DIR}/UseSWIG.cmake)
  55. execute_process(COMMAND ${SWIG_EXECUTABLE} -version
  56. OUTPUT_VARIABLE SWIG_version_output
  57. ERROR_VARIABLE SWIG_version_output
  58. RESULT_VARIABLE SWIG_version_result)
  59. if(SWIG_version_result)
  60. message(SEND_ERROR "Command \"${SWIG_EXECUTABLE} -version\" failed with output:\n${SWIG_version_output}")
  61. else()
  62. string(REGEX REPLACE ".*SWIG Version[^0-9.]*\([0-9.]+\).*" "\\1"
  63. SWIG_version_output "${SWIG_version_output}")
  64. set(SWIG_VERSION ${SWIG_version_output} CACHE STRING "Swig version" FORCE)
  65. endif()
  66. endif()
  67. endif()
  68. endif()
  69. include(${CMAKE_CURRENT_LIST_DIR}/FindPackageHandleStandardArgs.cmake)
  70. FIND_PACKAGE_HANDLE_STANDARD_ARGS(SWIG REQUIRED_VARS SWIG_EXECUTABLE SWIG_DIR
  71. VERSION_VAR SWIG_VERSION )
  72. mark_as_advanced(SWIG_DIR SWIG_VERSION)