FindCVSÂķ

Finds the Concurrent Versions System (CVS):

find_package(CVS [...])

Result VariablesÂķ

This module defines the following variables:

CVS_FOUND

Boolean indicating whether the cvs command-line client was found.

Cache VariablesÂķ

The following cache variables may also be set:

CVS_EXECUTABLE

Path to cvs command-line client.

ExamplesÂķ

Finding CVS and executing it in a process:

find_package(CVS)
if(CVS_FOUND)
  execute_process(COMMAND ${CVS_EXECUTABLE} --help)
endif()