From 3ab04aecaaab91db745d91c5741136939d67a0ad Mon Sep 17 00:00:00 2001 From: bibermann Date: Wed, 10 Jul 2019 19:25:50 +0200 Subject: [PATCH] Add install target (#40) --- CMakeLists.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index f6bb102..0dfd52d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -4,4 +4,6 @@ project(subprocess CXX) set(CMAKE_CXX_STANDARD 11) enable_testing() -add_subdirectory(test) \ No newline at end of file +add_subdirectory(test) + +install(FILES subprocess.hpp DESTINATION include/subprocess/)