qt-build-tools/6.5.1/_tools/cmake/share/cmake-3.27/Modules/FindUnixCommands.cmake

83 lines
1.6 KiB
CMake
Raw Normal View History

2023-11-01 06:11:15 +08:00
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
# file Copyright.txt or https://cmake.org/licensing for details.
#[=======================================================================[.rst:
FindUnixCommands
----------------
2023-11-01 08:44:24 +08:00
.. deprecated:: 3.26
Use :option:`${CMAKE_COMMAND} -E <cmake -E>` subcommands instead.
2023-11-01 06:11:15 +08:00
Find Unix commands, including the ones from Cygwin
2023-11-01 06:20:22 +08:00
This module looks for the Unix commands ``bash``, ``cp``, ``gzip``,
``mv``, ``rm``, and ``tar`` and stores the result in the variables
``BASH``, ``CP``, ``GZIP``, ``MV``, ``RM``, and ``TAR``.
2023-11-01 06:11:15 +08:00
#]=======================================================================]
include(${CMAKE_CURRENT_LIST_DIR}/FindCygwin.cmake)
2023-11-01 08:44:24 +08:00
include(${CMAKE_CURRENT_LIST_DIR}/FindMsys.cmake)
2023-11-01 06:11:15 +08:00
find_program(BASH
bash
${CYGWIN_INSTALL_PATH}/bin
2023-11-01 08:44:24 +08:00
${MSYS_INSTALL_PATH}/usr/bin
2023-11-01 06:11:15 +08:00
)
mark_as_advanced(
BASH
)
find_program(CP
cp
${CYGWIN_INSTALL_PATH}/bin
2023-11-01 08:44:24 +08:00
${MSYS_INSTALL_PATH}/usr/bin
2023-11-01 06:11:15 +08:00
)
mark_as_advanced(
CP
)
find_program(GZIP
gzip
${CYGWIN_INSTALL_PATH}/bin
2023-11-01 08:44:24 +08:00
${MSYS_INSTALL_PATH}/usr/bin
2023-11-01 06:11:15 +08:00
)
mark_as_advanced(
GZIP
)
find_program(MV
mv
${CYGWIN_INSTALL_PATH}/bin
2023-11-01 08:44:24 +08:00
${MSYS_INSTALL_PATH}/usr/bin
2023-11-01 06:11:15 +08:00
)
mark_as_advanced(
MV
)
find_program(RM
rm
${CYGWIN_INSTALL_PATH}/bin
2023-11-01 08:44:24 +08:00
${MSYS_INSTALL_PATH}/usr/bin
2023-11-01 06:11:15 +08:00
)
mark_as_advanced(
RM
)
find_program(TAR
NAMES
tar
gtar
PATH
${CYGWIN_INSTALL_PATH}/bin
2023-11-01 08:44:24 +08:00
${MSYS_INSTALL_PATH}/usr/bin
2023-11-01 06:11:15 +08:00
)
mark_as_advanced(
TAR
)
include(${CMAKE_CURRENT_LIST_DIR}/FindPackageHandleStandardArgs.cmake)
find_package_handle_standard_args(UnixCommands
REQUIRED_VARS BASH CP GZIP MV RM TAR
)