Files
openvino/docs/IE_DG/Extensibility_DG/Building.md
Nikolay Tyukaev 361dec7362 Docs to Sphinx (#8151)
* docs to sphinx

* Update GPU.md

* Update CPU.md

* Update AUTO.md

* Update performance_int8_vs_fp32.md

* update

* update md

* updates

* disable doc ci

* disable ci

* fix index.rst

Co-authored-by: Andrey Zaytsev <andrey.zaytsev@intel.com>
2021-10-24 17:43:00 +03:00

638 B

Build Extension Library Using CMake*

Inference Engine build infrastructure provides the Inference Engine Package for application development.

To configure the build of your extension library, use the following CMake script:

@snippet template_extension/CMakeLists.txt cmake:extension

This CMake script finds the Inference Engine and nGraph using the find_package CMake command.

To build the extension library, run the commands below:

$ cd template_extension
$ mkdir build
$ cd build
$ cmake -DInferenceEngine_DIR=[IE_DIR] -Dngraph_DIR=[NGRAPH_DIR] ../
$ cmake --build .