mirror of
https://github.com/nasa/trick.git
synced 2024-12-20 21:53:10 +00:00
4f5ce7e4a1
closes #938 closes #941 closes #943
17 lines
366 B
CMake
17 lines
366 B
CMake
|
|
# FindMaven
|
|
# --------
|
|
#
|
|
# Find mvn
|
|
#
|
|
# This module looks for mvn. This module defines the following values:
|
|
#
|
|
# ::
|
|
#
|
|
# MAVEN_EXECUTABLE: the full path to the tee tool.
|
|
# MAVEN_FOUND: True if tee has been found.
|
|
|
|
find_program(MAVEN_EXECUTABLE mvn)
|
|
include (FindPackageHandleStandardArgs)
|
|
FIND_PACKAGE_HANDLE_STANDARD_ARGS(MAVEN REQUIRED_VARS MAVEN_EXECUTABLE)
|