]> Creatis software - gdcm.git/blob - CMake/FindRsync.cmake
ENH: Adding a find rsync cmake module
[gdcm.git] / CMake / FindRsync.cmake
1 #
2 # This module finds if rsync is installed
3 #
4 #  RSYNC_EXECUTABLE         = full path to the pike binary
5 #
6
7 FIND_PROGRAM(RSYNC_EXECUTABLE
8   NAMES rsync
9   PATHS
10   /usr/bin
11   /usr/local/bin
12   )
13
14 MARK_AS_ADVANCED(
15   RSYNC_EXECUTABLE
16   )