mirror of
https://github.com/nasa/trick.git
synced 2024-12-19 05:07:54 +00:00
ce0cdc9636
* Merging changes from cmake branch to master * Fixing includes for renamed header files * still need build rule * Adding warning for swig code for gcc8+ * Adding CMakeLists.txt for data products * Cmake merge #901 Making adjustments to get cmake working on the Mac (Mojave) * Cmake merge #901 Changing string append to list append
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)
|
|
|