Skip to content

Commit

Permalink
Added missing slash to header installation path
Browse files Browse the repository at this point in the history
The headers were being installed to includecml instead of include/cml.
  • Loading branch information
robjinman committed Jul 12, 2015
1 parent c8159ae commit 6d55e42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cml/CMakeLists.txt
Expand Up @@ -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
Expand Down

0 comments on commit 6d55e42

Please sign in to comment.