mirror of
https://github.com/nasa/trick.git
synced 2024-12-19 21:27:54 +00:00
20 lines
391 B
CMake
20 lines
391 B
CMake
|
|
||
|
# FindTee
|
||
|
# --------
|
||
|
#
|
||
|
# Find tee
|
||
|
#
|
||
|
# This module looks for tee. This module defines the following values:
|
||
|
#
|
||
|
# ::
|
||
|
#
|
||
|
# TEE_EXECUTABLE: the full path to the tee tool.
|
||
|
# TEE_FOUND: True if tee has been found.
|
||
|
|
||
|
find_program(TEE_EXECUTABLE tee)
|
||
|
mark_as_advanced( TEE_EXECUTABLE )
|
||
|
|
||
|
include (FindPackageHandleStandardArgs)
|
||
|
FIND_PACKAGE_HANDLE_STANDARD_ARGS(TEE REQUIRED_VARS TEE_EXECUTABLE)
|
||
|
|