summaryrefslogtreecommitdiffstats
path: root/ConfigureChecks.cmake
diff options
context:
space:
mode:
authorgregory guy <gregory-tde@laposte.net>2020-07-28 17:14:45 +0200
committerMichele Calgaro <michele.calgaro@yahoo.it>2020-07-29 13:27:36 +0900
commit269e24133f33fddf5c512f1316a6b97936a94e54 (patch)
tree5ec573cb1d788d79c53f4fdb9fee59a5cdd47610 /ConfigureChecks.cmake
parent267743ac8c37b34340417b7d2281bbd8f3a1aa35 (diff)
downloadkeep-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.cmake9
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()