Building ROOT with plugins

How could one build ROOT with its plugins included?

In order to enable minuit2, I built ROOT with the following command.

 cmake -DMinuit2=ON ./root-6.12.04/
 make 

Then the output files include a directory ‘$ROOTSYS/math/minuit2’, but the directory doesn’t contain all the files that the source code of ROOT has.

Try:

ls -al ${ROOTSYS}/lib/*Minuit2*
ls -al ${ROOTSYS}/include/*Minuit2*

Thanks a lot! I found the expected files from the include and lib directories.

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.