From 7dd4f2977a3ce4d57a15fe5f0ce2f127779e5e4a Mon Sep 17 00:00:00 2001 From: Saad K Date: Tue, 31 Jan 2017 14:22:45 -0500 Subject: [PATCH] Added INSTALL commands (#788) Added INSTALL commands - this is especially useful when adding dependencies (such as CATCH) by using the ExternalProject_Add command --- CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4f99aa1d..e4a74a8d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -258,3 +258,5 @@ set_tests_properties(ListTests PROPERTIES PASS_REGULAR_EXPRESSION "[0-9]+ test c add_test(NAME ListTags COMMAND SelfTest --list-tags) set_tests_properties(ListTags PROPERTIES PASS_REGULAR_EXPRESSION "[0-9]+ tags") + +install(DIRECTORY "single_include/" DESTINATION "include/catch/")