Skip to content
Snippets Groups Projects
Commit eb7dfb13 authored by isucan's avatar isucan
Browse files

fix install: previously forgot to install hxx files

git-svn-id: https://kforge.ros.org/fcl/fcl_ros@187 253336fb-580f-4252-a368-f3cef5a2a82b
parent cf39ab86
No related branches found
No related tags found
No related merge requests found
...@@ -80,7 +80,7 @@ set(pkg_conf_file "${CMAKE_CURRENT_SOURCE_DIR}/fcl.pc") ...@@ -80,7 +80,7 @@ set(pkg_conf_file "${CMAKE_CURRENT_SOURCE_DIR}/fcl.pc")
configure_file("${pkg_conf_file}.in" "${pkg_conf_file}" @ONLY) configure_file("${pkg_conf_file}.in" "${pkg_conf_file}" @ONLY)
install(DIRECTORY include/ DESTINATION include install(DIRECTORY include/ DESTINATION include
FILES_MATCHING PATTERN "*.h" FILES_MATCHING PATTERN "*.h" PATTERN "*.hxx"
PATTERN ".DS_Store" EXCLUDE PATTERN ".DS_Store" EXCLUDE
PATTERN ".svn" EXCLUDE PATTERN ".svn" EXCLUDE
) )
......
# set the version in a way CMake can use # set the version in a way CMake can use
set(FCL_MAJOR_VERSION 0) set(FCL_MAJOR_VERSION 0)
set(FCL_MINOR_VERSION 2) set(FCL_MINOR_VERSION 2)
set(FCL_PATCH_VERSION 0) set(FCL_PATCH_VERSION 3)
set(FCL_VERSION "${FCL_MAJOR_VERSION}.${FCL_MINOR_VERSION}.${FCL_PATCH_VERSION}") set(FCL_VERSION "${FCL_MAJOR_VERSION}.${FCL_MINOR_VERSION}.${FCL_PATCH_VERSION}")
# increment this when we have ABI changes # increment this when we have ABI changes
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment