The documentation instructions on the CMAKE_FAQ page needs update.
The steps on activating a new plugin are not precise enough for new users/developers.
Description
Description
Related Objects
Related Objects
- Mentioned In
- rMITK7f30b5b45cee: Update Cmake FAQ in plugins
Event Timeline
Comment Actions
I want to use a plugin, how do I activate it?
- Navigate to the MITK-build folder inside your super build folder.
For eg. cd ~/MITK-superbuild/MITK-build - Start CMake.
For eg. cmake-gui . or ccmake . - Configure, if necessary for all the variables to be displayed.
- Find the variable MITK_BUILD_<plugin-id> and activate it. The plugin-id is the package name of the plugin. For eg. org.mitk.core.ext. (Refer the MITK/Plugins directory)
- Configure, again.
- Generate.
- Rebuild MITK-build target using your development environment.
For eg. make -j4