From 6d55e420a0f8b8d8856ca7b5c127e9db371416ea Mon Sep 17 00:00:00 2001 From: Rob Jinman Date: Sun, 12 Jul 2015 16:56:47 +0100 Subject: [PATCH] Added missing slash to header installation path The headers were being installed to includecml instead of include/cml. --- cml/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cml/CMakeLists.txt b/cml/CMakeLists.txt index b91c1bd..25a910b 100644 --- a/cml/CMakeLists.txt +++ b/cml/CMakeLists.txt @@ -19,7 +19,7 @@ FOREACH(Header ${FILELIST}) GET_FILENAME_COMPONENT(_path ${Header} PATH) # Install to _path, relative to the header installation directory: - INSTALL(FILES ${Header} DESTINATION "${CML_HEADER_PATH}cml/${_path}") + INSTALL(FILES ${Header} DESTINATION "${CML_HEADER_PATH}/cml/${_path}") ENDFOREACH(Header) # Add an interface library if cmake is version 3.1 or newer