* refactor: add clang style check for samples * fix: add .clang-format for ie * fix: style check for missing headers * refactor: remove cpplint for IE samples * fix: setw is not a member of std for classification_results.hpp * feat: add indent after ifdefine * feat: set up google style for IE samples * fix indents for w_dirent headers * fix: include issues for utils.cpp due to clang-format
14 lines
493 B
CMake
14 lines
493 B
CMake
# Copyright (C) 2018-2021 Intel Corporation
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
set(TARGET_NAME "ngraph_function_creation_sample")
|
|
|
|
ie_add_sample(NAME ngraph_function_creation_sample
|
|
SOURCES "${CMAKE_CURRENT_SOURCE_DIR}/main.cpp"
|
|
HEADERS "${CMAKE_CURRENT_SOURCE_DIR}/ngraph_function_creation_sample.hpp"
|
|
DEPENDENCIES format_reader ie_samples_utils)
|
|
|
|
find_package(ngraph REQUIRED)
|
|
target_link_libraries(${TARGET_NAME} PRIVATE ${NGRAPH_LIBRARIES})
|