FindCVS

Finds the Concurrent Versions System (CVS).

結果變數

This module defines the following variables:

CVS_FOUND

True if the command-line client was found.

快取變數

The following cache variables may also be set:

CVS_EXECUTABLE

Path to cvs command-line client.

範例

Finding CVS and executing it in a process:

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