From ac27ff1bcaf9d67e1e6e0379c773c5ae1c1f0dd3 Mon Sep 17 00:00:00 2001 From: Florent Lamiraux <florent@laas.fr> Date: Wed, 26 Jan 2011 18:51:14 +0100 Subject: [PATCH] Fix installation of header file. --- CMakeLists.txt | 5 +++++ include/CMakeLists.txt | 6 ------ 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 92276a1..4e80f66 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -19,6 +19,7 @@ INCLUDE(cmake/base.cmake) INCLUDE(cmake/boost.cmake) INCLUDE(cmake/pthread.cmake) INCLUDE(cmake/cpack.cmake) +include(cmake/header.cmake) SET(PROJECT_NAME dynamic-graph-python) SET(PROJECT_DESCRIPTION "Dynamic graph library Python bindings") @@ -26,6 +27,10 @@ SET(PROJECT_URL "http://github.com/jrl-umi3218/dynamic-graph-python") SET(PROJECT_VERSION 1.99) SET(CUSTOM_HEADER_DIR "dynamic-graph/python") +# Headers list. +SET(${PROJECT_NAME}_HEADERS + include/dynamic-graph/python/interpreter.hh +) # Defines paths. SET(LIBRARY_OUTPUT_PATH ${PROJECT_BINARY_DIR}/lib) diff --git a/include/CMakeLists.txt b/include/CMakeLists.txt index 5e93dfe..4b8bcbc 100644 --- a/include/CMakeLists.txt +++ b/include/CMakeLists.txt @@ -13,9 +13,3 @@ # received a copy of the GNU Lesser General Public License along with # dynamic-graph-python. If not, see <http://www.gnu.org/licenses/>. -include(../cmake/header.cmake) - -# Headers list. -SET(${PROJECT_NAME}_HEADERS - interpreter.hh -) -- GitLab