From 9d05b10c1775c032088554b16857f97ec3ac5799 Mon Sep 17 00:00:00 2001 From: Jack Morrison Date: Wed, 7 May 2014 12:53:01 -0400 Subject: [PATCH] Fix Calibu exporting. --- src/CMakeLists.txt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 6e44dc5..fdead97 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -88,7 +88,7 @@ find_package(OpenCV2) if( OpenCV2_FOUND ) set( HAVE_OPENCV 1 ) list( APPEND LINK_LIBS ${OpenCV2_LIBRARIES}) - list( APPEND INTERNAL_INC ${OpenCV2_INCLUDE_DIRS} ) + list( APPEND CALIBU_INC ${OpenCV2_INCLUDE_DIRS} ) list( APPEND HEADERS ${INC_DIR}/pose/Pnp.h ${INC_DIR}/pose/Tracker.h ) list( APPEND SOURCES ${SRC_DIR}/pose/Pnp.cpp ${SRC_DIR}/pose/Tracker.cpp ) endif() @@ -99,7 +99,6 @@ endif() # Include source/build directories first to preempt any installed Calibu include_directories( ${CALIBU_INC} ) include_directories( ${USER_INC} ) -include_directories( ${INTERNAL_INC} ) ## Generate symbol export helper header on MSVC IF(MSVC)