Publishing 2019 R1 content
[platform/upstream/dldt.git] / inference-engine / samples / common / format_reader / CMakeLists.txt
index 0498e0a..e3ecd58 100644 (file)
@@ -1,9 +1,7 @@
-# Copyright (C) 2018 Intel Corporation
+# Copyright (C) 2018-2019 Intel Corporation
 # SPDX-License-Identifier: Apache-2.0
 #
 
-cmake_minimum_required(VERSION 2.8)
-
 set (TARGET_NAME "format_reader")
 
 file (GLOB MAIN_SRC
@@ -15,7 +13,7 @@ file (GLOB LIBRARY_HEADERS
         )
 
 # Find OpenCV components if exist
-find_package(OpenCV COMPONENTS imgcodecs QUIET)
+find_package(OpenCV COMPONENTS imgcodecs videoio imgproc  QUIET)
 if(NOT(OpenCV_FOUND))
     message(WARNING "OPENCV is disabled or not found, " ${TARGET_NAME} " is built without OPENCV support")
 else()
@@ -34,13 +32,15 @@ add_definitions(-DIMPLEMENT_INFERENCE_ENGINE_API)
 source_group("src" FILES ${LIBRARY_SRC})
 source_group("include" FILES ${LIBRARY_HEADERS})
 
-# Properties->C/C++->General->Additional Include Directories
-include_directories (
-        ${CMAKE_CURRENT_SOURCE_DIR})
 
 # Create library file from sources.
 add_library(${TARGET_NAME} SHARED ${MAIN_SRC} ${LIBRARY_HEADERS})
 target_link_libraries(${TARGET_NAME} ${OpenCV_LIBRARIES})
 
-set_target_properties(${TARGET_NAME} PROPERTIES "CMAKE_CXX_FLAGS" "${CMAKE_CXX_FLAGS} -fPIE"
-COMPILE_PDB_NAME ${TARGET_NAME})
+if(CMAKE_VERSION VERSION_LESS "2.8.11")
+       include_directories (${CMAKE_CURRENT_SOURCE_DIR})
+else()
+       target_include_directories(${TARGET_NAME} PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})
+endif()
+
+set_target_properties(${TARGET_NAME} PROPERTIES COMPILE_PDB_NAME ${TARGET_NAME})