summaryrefslogtreecommitdiffstats
path: root/ConfigureChecks.cmake
diff options
context:
space:
mode:
authorgregory guy <[email protected]>2020-07-28 17:14:45 +0200
committergregory guy <[email protected]>2020-07-28 17:14:45 +0200
commitd60abd172dca3ed096aee7e34c75b0d43673816e (patch)
tree989873aa6274e7de43626d588705ee0db4a68f74 /ConfigureChecks.cmake
parent042a4351da36512adffbc2abc32bd12c9c43440c (diff)
downloadkeep-d60abd172dca3ed096aee7e34c75b0d43673816e.tar.gz
keep-d60abd172dca3ed096aee7e34c75b0d43673816e.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 <[email protected]>
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()