FindCVS¶
Finds the Concurrent Versions System (CVS):
find_package(CVS [...])
Result Variables¶
This module defines the following variables:
CVS_FOUNDBoolean indicating whether the
cvscommand-line client was found.
Cache Variables¶
The following cache variables may also be set:
CVS_EXECUTABLEPath to
cvscommand-line client.
Examples¶
Finding CVS and executing it in a process:
find_package(CVS)
if(CVS_FOUND)
execute_process(COMMAND ${CVS_EXECUTABLE} --help)
endif()