summarylogtreecommitdiffstats
path: root/CMakeLists.patch
blob: bfcb3d2a6551dffeef7b31604e37102068971451 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
--- CMakeLists.txt.orig	2019-09-14 14:45:54.089057224 -0400
+++ CMakeLists.txt	2019-09-14 14:46:07.352389966 -0400
@@ -1,12 +1,14 @@
 cmake_minimum_required(VERSION 2.8)
 project(image_view)
 
+set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -isystem /usr/include/harfbuzz")
+
 find_package(catkin REQUIRED COMPONENTS camera_calibration_parsers cv_bridge dynamic_reconfigure image_transport message_filters message_generation nodelet rosconsole roscpp std_srvs stereo_msgs)
 generate_dynamic_reconfigure_options(cfg/ImageView.cfg)
 
 catkin_package(CATKIN_DEPENDS dynamic_reconfigure)
 find_package(Boost REQUIRED COMPONENTS thread)
-find_package(OpenCV REQUIRED)
+find_package(OpenCV 3 REQUIRED)
 
 include_directories(${Boost_INCLUDE_DIRS}
                     ${catkin_INCLUDE_DIRS}