2013-10-15 11:17:36 -04:00
|
|
|
#.rst:
|
|
|
|
# FindUnixCommands
|
|
|
|
# ----------------
|
|
|
|
#
|
|
|
|
# Find unix commands from cygwin
|
2001-11-02 16:44:00 -05:00
|
|
|
#
|
2013-10-15 11:17:36 -04:00
|
|
|
# This module looks for some usual Unix commands.
|
2001-11-02 16:44:00 -05:00
|
|
|
|
2009-09-28 11:45:50 -04:00
|
|
|
#=============================================================================
|
|
|
|
# Copyright 2001-2009 Kitware, Inc.
|
|
|
|
#
|
|
|
|
# Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
# see accompanying file Copyright.txt for details.
|
|
|
|
#
|
|
|
|
# This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
# See the License for more information.
|
|
|
|
#=============================================================================
|
2010-08-06 17:48:47 -07:00
|
|
|
# (To distribute this file outside of CMake, substitute the full
|
2009-09-28 11:45:50 -04:00
|
|
|
# License text for the above reference.)
|
|
|
|
|
2012-11-03 21:35:44 +01:00
|
|
|
include(${CMAKE_CURRENT_LIST_DIR}/FindCygwin.cmake)
|
2001-11-02 16:44:00 -05:00
|
|
|
|
2012-08-13 13:47:32 -04:00
|
|
|
find_program(BASH
|
2001-12-04 10:55:17 -05:00
|
|
|
bash
|
|
|
|
${CYGWIN_INSTALL_PATH}/bin
|
|
|
|
/bin
|
2012-08-13 13:42:58 -04:00
|
|
|
/usr/bin
|
2001-12-04 10:55:17 -05:00
|
|
|
/usr/local/bin
|
|
|
|
/sbin
|
|
|
|
)
|
2012-08-13 13:47:32 -04:00
|
|
|
mark_as_advanced(
|
2001-12-04 10:55:17 -05:00
|
|
|
BASH
|
|
|
|
)
|
|
|
|
|
2012-08-13 13:47:32 -04:00
|
|
|
find_program(CP
|
2001-12-04 10:55:17 -05:00
|
|
|
cp
|
|
|
|
${CYGWIN_INSTALL_PATH}/bin
|
|
|
|
/bin
|
2012-08-13 13:42:58 -04:00
|
|
|
/usr/bin
|
2001-12-04 10:55:17 -05:00
|
|
|
/usr/local/bin
|
|
|
|
/sbin
|
|
|
|
)
|
2012-08-13 13:47:32 -04:00
|
|
|
mark_as_advanced(
|
2001-12-04 10:55:17 -05:00
|
|
|
CP
|
|
|
|
)
|
|
|
|
|
2012-08-13 13:47:32 -04:00
|
|
|
find_program(GZIP
|
2001-12-04 10:55:17 -05:00
|
|
|
gzip
|
|
|
|
${CYGWIN_INSTALL_PATH}/bin
|
|
|
|
/bin
|
2012-08-13 13:42:58 -04:00
|
|
|
/usr/bin
|
2001-12-04 10:55:17 -05:00
|
|
|
/usr/local/bin
|
|
|
|
/sbin
|
|
|
|
)
|
2012-08-13 13:47:32 -04:00
|
|
|
mark_as_advanced(
|
2001-12-04 10:55:17 -05:00
|
|
|
GZIP
|
|
|
|
)
|
|
|
|
|
2012-08-13 13:47:32 -04:00
|
|
|
find_program(MV
|
2001-12-04 10:55:17 -05:00
|
|
|
mv
|
|
|
|
${CYGWIN_INSTALL_PATH}/bin
|
|
|
|
/bin
|
2012-08-13 13:42:58 -04:00
|
|
|
/usr/bin
|
2001-12-04 10:55:17 -05:00
|
|
|
/usr/local/bin
|
|
|
|
/sbin
|
|
|
|
)
|
2012-08-13 13:47:32 -04:00
|
|
|
mark_as_advanced(
|
2001-12-04 10:55:17 -05:00
|
|
|
MV
|
|
|
|
)
|
|
|
|
|
2012-08-13 13:47:32 -04:00
|
|
|
find_program(RM
|
2001-12-04 10:55:17 -05:00
|
|
|
rm
|
|
|
|
${CYGWIN_INSTALL_PATH}/bin
|
|
|
|
/bin
|
2012-08-13 13:42:58 -04:00
|
|
|
/usr/bin
|
2001-12-04 10:55:17 -05:00
|
|
|
/usr/local/bin
|
|
|
|
/sbin
|
|
|
|
)
|
2012-08-13 13:47:32 -04:00
|
|
|
mark_as_advanced(
|
2001-12-04 10:55:17 -05:00
|
|
|
RM
|
|
|
|
)
|
|
|
|
|
2012-08-13 13:47:32 -04:00
|
|
|
find_program(TAR
|
2012-08-13 13:42:58 -04:00
|
|
|
NAMES
|
|
|
|
tar
|
2001-12-04 10:55:17 -05:00
|
|
|
gtar
|
|
|
|
PATH
|
|
|
|
${CYGWIN_INSTALL_PATH}/bin
|
|
|
|
/bin
|
2012-08-13 13:42:58 -04:00
|
|
|
/usr/bin
|
2001-12-04 10:55:17 -05:00
|
|
|
/usr/local/bin
|
|
|
|
/sbin
|
|
|
|
)
|
2012-08-13 13:47:32 -04:00
|
|
|
mark_as_advanced(
|
2001-12-04 10:55:17 -05:00
|
|
|
TAR
|
|
|
|
)
|