diff --git a/math/physics/CMakeLists.txt b/math/physics/CMakeLists.txt index 6658c3ce1b369b9635c4c359522339fa89074cf6..42f69d81e0ae9b9391b60a98000aefd17fc6cd73 100644 --- a/math/physics/CMakeLists.txt +++ b/math/physics/CMakeLists.txt @@ -2,6 +2,32 @@ # CMakeLists.txt file for building ROOT math/physics package ############################################################################ -ROOT_STANDARD_LIBRARY_PACKAGE(Physics DEPENDENCIES Matrix MathCore DICTIONARY_OPTIONS "-writeEmptyRootPCM") - - +ROOT_STANDARD_LIBRARY_PACKAGE(Physics + HEADERS + TFeldmanCousins.h + TGenPhaseSpace.h + TLorentzRotation.h + TLorentzVector.h + TQuaternion.h + TRobustEstimator.h + TRolke.h + TRotation.h + TVector2.h + TVector3.h + SOURCES + src/TFeldmanCousins.cxx + src/TGenPhaseSpace.cxx + src/TLorentzRotation.cxx + src/TLorentzVector.cxx + src/TQuaternion.cxx + src/TRobustEstimator.cxx + src/TRolke.cxx + src/TRotation.cxx + src/TVector2.cxx + src/TVector3.cxx + DEPENDENCIES + Matrix + MathCore + DICTIONARY_OPTIONS + -writeEmptyRootPCM +)