Build from source ================= Prerequisites ------------- Required components to compile gnuradio-limesuiteng plugin: #. GNURadio #. Boost #. Pybind11 #. Gmp #. Python #. C++ compiler #. CMake #. LimeSuiteNG Compilation ----------- Clone repository: .. code-block:: bash git clone Enter repository, create and enter build directory: .. code-block:: bash cd /plugins/gr-limesuiteng mkdir build cd build Run cmake to configure build files and then build: .. code-block:: bash cmake .. -DCMAKE_BUILD_TYPE=Release sudo make .. tip:: Add ``-jx`` flag to speed up building process, where ``x`` is processor core count. Plugin installation ------------------- Install plugin using the following command: .. code-block:: bash sudo make install sudo ldconfig .. tip:: To uninstall plugin from gnuradio folder use ``sudo make uninstall`` inside the build directory. Check out :ref:`gnuradio-limesuiteng-example-ref` section for plugin demonstration.