Skip to content
Snippets Groups Projects
Commit 63449a93 authored by vahrenkamp's avatar vahrenkamp
Browse files

v2.1.10: fixing install bug (some hpp files were not marked for installation)

git-svn-id: http://svn.code.sf.net/p/simox/code/trunk@390 042f3d55-54a8-47e9-b7fb-15903f145c44
parent 0bb8c89f
No related branches found
No related tags found
No related merge requests found
......@@ -261,7 +261,7 @@ MESSAGE(STATUS " * Generating CMake files")
IF (NOT DEFINED Simox_VERSION)
set(VirtualRobot_MAJOR_VERSION 2)
set(VirtualRobot_MINOR_VERSION 1)
set(VirtualRobot_PATCH_VERSION 9)
set(VirtualRobot_PATCH_VERSION 10)
ELSE()
set(VirtualRobot_MAJOR_VERSION ${Simox_MAJOR_VERSION})
set(VirtualRobot_MINOR_VERSION ${Simox_MINOR_VERSION})
......@@ -374,7 +374,9 @@ INSTALL(TARGETS VirtualRobot
INSTALL(DIRECTORY ${PROJECT_SOURCE_DIR} DESTINATION ${VirtualRobot_INSTALL_HEADER_DIR}
COMPONENT Headers
FILES_MATCHING PATTERN "*.h"
FILES_MATCHING
PATTERN "*.h"
PATTERN "*.hpp"
PATTERN ".svn" EXCLUDE
PATTERN "CMakeModules" EXCLUDE
PATTERN "tests" EXCLUDE
......
......@@ -14,7 +14,7 @@ IF (NOT Simox_CONFIGURED)
############################# VERSION #################################
set(Simox_MAJOR_VERSION 2)
set(Simox_MINOR_VERSION 1)
set(Simox_PATCH_VERSION 9)
set(Simox_PATCH_VERSION 10)
set(Simox_VERSION
${Simox_MAJOR_VERSION}.${Simox_MINOR_VERSION}.${Simox_PATCH_VERSION})
......
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