##################################################### # Create module ##################################################### $ gr_modtool newmod ##################################################### # General C++ block ##################################################### gr-$ gr_modtool add -t general -l cpp or ##################################################### # Sync C++ block ##################################################### gr-$ gr_modtool add -t sync -l cpp # Build $ mkdir build # We're currently in the module's top directory $ cd build/ $ cmake ../ # Tell CMake that all its config files are one dir up $ make # And start building (should work after the previous section) # Test gr-/build$ make test gr-/build$ ctest -V -R square # XML für GRC gr-$ gr_modtool makexml # Install gr-/build$ sudo make install gr-/build$ sudo ldconfig ##################################################### # Sync Python Module ##################################################### gr-$ gr_modtool add -t sync -l python ------------------------------------------------------------- Source: https://wiki.gnuradio.org/index.php/OutOfTreeModules -------------------------------------------------------------