diff options
author | gregory guy <gregory-tde@laposte.net> | 2020-07-28 17:14:45 +0200 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2020-07-29 13:27:36 +0900 |
commit | 269e24133f33fddf5c512f1316a6b97936a94e54 (patch) | |
tree | 5ec573cb1d788d79c53f4fdb9fee59a5cdd47610 /ConfigureChecks.cmake | |
parent | 267743ac8c37b34340417b7d2281bbd8f3a1aa35 (diff) | |
download | keep-269e24133f33fddf5c512f1316a6b97936a94e54.tar.gz keep-269e24133f33fddf5c512f1316a6b97936a94e54.zip |
Drop automake build support.
Add basic cmake build instructions.
Rework of the README file.
Delete files INDEX and Mainpage.dox.
Add a warning if the rdiff-backup backend is not found on the system.
Some cosmetics.
Signed-off-by: gregory guy <gregory-tde@laposte.net>
(cherry picked from commit d60abd172dca3ed096aee7e34c75b0d43673816e)
Diffstat (limited to 'ConfigureChecks.cmake')
-rw-r--r-- | ConfigureChecks.cmake | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake index d1e3778..1583f86 100644 --- a/ConfigureChecks.cmake +++ b/ConfigureChecks.cmake @@ -23,3 +23,12 @@ tde_setup_largefiles( ) if( WITH_GCC_VISIBILITY ) tde_setup_gcc_visibility( ) endif( WITH_GCC_VISIBILITY ) + + +##### check for rdiff-backup + +find_program( RDIFF-BACKUP_EXE rdiff-backup ) + +if( NOT RDIFF-BACKUP_EXE ) + message("\n Keep uses \"rdiff-backup\" as backend, but that one hasn't been found on your system! \n") +endif() |