]> Creatis software - gdcm.git/blob - CMake/FindRsync.cmake
Fix mistypings
[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 # Typical usage for gdcm is:
7 # rsync -avH --delete [options] rsync.creatis.insa-lyon.fr::module localdir
8 # Compression option is: -z
9
10 FIND_PROGRAM(RSYNC_EXECUTABLE
11   NAMES rsync
12   PATHS
13   /usr/bin
14   /usr/local/bin
15   )
16
17 MARK_AS_ADVANCED(
18   RSYNC_EXECUTABLE
19   )