FindCVS

Finds the Concurrent Versions System (CVS).

Result Variables

This module defines the following variables:

CVS_FOUND

True if the 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()