* Added nGraph transformations developer guide * Added some more chapters * Added Transformation writing essentials chapter * Added working with ngraph::Function chapter * Added two chapters * Fix comments * Moved code snippets to source files * Moved ngraph test utils to common. Added transformations test examples to template plugin * Added Common mistake section * Added doxygen for CommoOptimization passes * Fixed doxygen comments; added links in md files; fixed typos * Fixed review comments
14 lines
348 B
CMake
14 lines
348 B
CMake
# Copyright (C) 2018-2020 Intel Corporation
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
set(TARGET_NAME ie_docs_examples)
|
|
|
|
file(GLOB SOURCES *.cpp)
|
|
|
|
add_library(ie_docs_examples STATIC ${SOURCES})
|
|
|
|
target_link_libraries(${TARGET_NAME} PRIVATE inference_engine_plugin_api ngraph)
|
|
|
|
#add_cpplint_target(${TARGET_NAME}_cpplint FOR_TARGETS ${TARGET_NAME})
|