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()