# OpenVINO Template Plugin Template Plugin for OpenVINO™ Runtime which demonstrates basics of how OpenVINO™ Runtime plugin can be built and implemented on top of OpenVINO Developer Package and Plugin API. As a backend for actual computations OpenVINO reference implementations is used, so the Template plugin is fully functional. ## How to build ```bash $ cd $ mkdir /build $ cd /build $ cmake -DENABLE_TESTS=ON -DENABLE_FUNCTIONAL_TESTS=ON .. $ make -j8 $ cd $ mkdir /build $ cd /build $ cmake -DOpenVINODeveloperPackage_DIR=/build -DENABLE_TEMPLATE_REGISTRATION=ON .. $ make -j8 ``` `ENABLE_TEMPLATE_REGISTRATION` cmake options registers the plugin in plugin.xml configuration file and enables install target for the plugin.