From 5bf126d9a77a53506cebe3ada942dbab8f9fd75b Mon Sep 17 00:00:00 2001 From: Bert Peters Date: Mon, 5 Mar 2018 16:58:23 +0100 Subject: [PATCH] Allow the package to be installed. --- CMakeLists.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index ebf0983..0f0d7b3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -68,3 +68,7 @@ target_link_libraries(fmri ${OPENGL_LIBRARIES}) find_package(GLEW REQUIRED) include_directories(${GLEW_INCLUDE_DIRS}) target_link_libraries(fmri ${GLEW_LIBRARIES}) + + +# Allow the package to be installed +install(TARGETS fmri DESTINATION bin)