* Minimized IE_MAIN_SOURCE_DIR hardcode * Used COMPILE_OPTIONS instead of COMPILE_FLAGS * Fixed compilation * Enabled NGRAPH_DYNAMIC_COMPONENTS_ENABLE by default * Fixes * Moved GNA related file * Fixed backend compilation * Fixed Windows for ngraph * Fixed <root>/tests build * More updates * Fixed scripts install * Fixed Windows * Fixed Windows
33 lines
612 B
CMake
33 lines
612 B
CMake
# Copyright (C) 2018-2021 Intel Corporation
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
# [cmake:main]
|
|
cmake_minimum_required(VERSION 3.13)
|
|
|
|
project(InferenceEngineTemplatePlugin)
|
|
|
|
set(IE_MAIN_TEMPLATE_PLUGIN_SOURCE_DIR ${InferenceEngineTemplatePlugin_SOURCE_DIR})
|
|
|
|
find_package(InferenceEngineDeveloperPackage REQUIRED)
|
|
|
|
if(CMAKE_COMPILER_IS_GNUCXX)
|
|
ie_add_compiler_flags(-Wall)
|
|
endif()
|
|
|
|
add_subdirectory(src)
|
|
|
|
if(ENABLE_TESTS)
|
|
include(CTest)
|
|
enable_testing()
|
|
|
|
if(ENABLE_FUNCTIONAL_TESTS)
|
|
add_subdirectory(tests/functional)
|
|
endif()
|
|
endif()
|
|
|
|
# install
|
|
|
|
ie_cpack(template)
|
|
# [cmake:main]
|