From bbd5fab17474eb3a003e69068c27f6e5c74b8aeb Mon Sep 17 00:00:00 2001 From: Snaipe Date: Sun, 4 Sep 2016 11:27:21 +0200 Subject: [PATCH] cmake: Added uninstall rule --- CMakeLists.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 5921383..3ae06a5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -132,6 +132,10 @@ if (COVERALLS) ) endif() +add_custom_target(uninstall + "${CMAKE_COMMAND}" -P "${CMAKE_MODULE_PATH}/uninstall.cmake" +) + if (CTESTS) enable_testing() add_custom_target(criterion_tests)