nymea/doc/test-plugin.qdoc

23 lines
813 B
Plaintext

/*!
\page test-plugin.html
\title Testing your plugin
\brief This page describes how to test your plugin that you've just created
In order to make nymead load your plugin, you have 2 options. Either install it into the system or make nymead load it from your plugin build directory.
To install the plugin into the system, run
\code
$ make install
\endcode
To make nymead load the plugin from the plugins build directory, run nymead with an environment variable exported
\code
$ NYMEA_PLUGINS_DIR=/path/to/plugin/ nymead
\endcode
In order to easier debug things, it is advised to enable debug output for the device manager and your plugin. E.g.
\code
$ NYMEA_PLUGINS_DIR=/path/to/plugin nymead -d DeviceManager,YourPlugin
\endcode
*/