FindUnixCommands.cmake 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. #.rst:
  2. # FindUnixCommands
  3. # ----------------
  4. #
  5. # Find Unix commands, including the ones from Cygwin
  6. #
  7. # This module looks for the Unix commands bash, cp, gzip, mv, rm, and tar
  8. # and stores the result in the variables BASH, CP, GZIP, MV, RM, and TAR.
  9. #=============================================================================
  10. # Copyright 2001-2014 Kitware, Inc.
  11. #
  12. # Distributed under the OSI-approved BSD License (the "License");
  13. # see accompanying file Copyright.txt for details.
  14. #
  15. # This software is distributed WITHOUT ANY WARRANTY; without even the
  16. # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  17. # See the License for more information.
  18. #=============================================================================
  19. # (To distribute this file outside of CMake, substitute the full
  20. # License text for the above reference.)
  21. include(${CMAKE_CURRENT_LIST_DIR}/FindCygwin.cmake)
  22. find_program(BASH
  23. bash
  24. ${CYGWIN_INSTALL_PATH}/bin
  25. /bin
  26. /usr/bin
  27. /usr/local/bin
  28. /sbin
  29. )
  30. mark_as_advanced(
  31. BASH
  32. )
  33. find_program(CP
  34. cp
  35. ${CYGWIN_INSTALL_PATH}/bin
  36. /bin
  37. /usr/bin
  38. /usr/local/bin
  39. /sbin
  40. )
  41. mark_as_advanced(
  42. CP
  43. )
  44. find_program(GZIP
  45. gzip
  46. ${CYGWIN_INSTALL_PATH}/bin
  47. /bin
  48. /usr/bin
  49. /usr/local/bin
  50. /sbin
  51. )
  52. mark_as_advanced(
  53. GZIP
  54. )
  55. find_program(MV
  56. mv
  57. ${CYGWIN_INSTALL_PATH}/bin
  58. /bin
  59. /usr/bin
  60. /usr/local/bin
  61. /sbin
  62. )
  63. mark_as_advanced(
  64. MV
  65. )
  66. find_program(RM
  67. rm
  68. ${CYGWIN_INSTALL_PATH}/bin
  69. /bin
  70. /usr/bin
  71. /usr/local/bin
  72. /sbin
  73. )
  74. mark_as_advanced(
  75. RM
  76. )
  77. find_program(TAR
  78. NAMES
  79. tar
  80. gtar
  81. PATH
  82. ${CYGWIN_INSTALL_PATH}/bin
  83. /bin
  84. /usr/bin
  85. /usr/local/bin
  86. /sbin
  87. )
  88. mark_as_advanced(
  89. TAR
  90. )
  91. include(${CMAKE_CURRENT_LIST_DIR}/FindPackageHandleStandardArgs.cmake)
  92. find_package_handle_standard_args(UnixCommands
  93. REQUIRED_VARS BASH CP GZIP MV RM TAR
  94. )