From 63449a93d7189e88cd0e514ef5db49658ea40f28 Mon Sep 17 00:00:00 2001
From: vahrenkamp <vahrenkamp@042f3d55-54a8-47e9-b7fb-15903f145c44>
Date: Fri, 14 Jun 2013 12:59:03 +0000
Subject: [PATCH] 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
---
 VirtualRobot/CMakeLists.txt | 6 ++++--
 config.cmake                | 2 +-
 2 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/VirtualRobot/CMakeLists.txt b/VirtualRobot/CMakeLists.txt
index 2c1cd8cfc..c3da7bb49 100644
--- a/VirtualRobot/CMakeLists.txt
+++ b/VirtualRobot/CMakeLists.txt
@@ -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
diff --git a/config.cmake b/config.cmake
index 37941c3cc..dd940fa20 100644
--- a/config.cmake
+++ b/config.cmake
@@ -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})
 
-- 
GitLab