123456789101112131415161718192021 |
- set(fmcDst_h_files
- fmcEvent.h
- fmcEventHeader.h
- fmcParticle.h)
- set(fmcDst_cxx_files
- fmcEvent.cxx
- fmcEventHeader.cxx
- fmcParticle.cxx)
- #---Generate dictionary
- ROOT_GENERATE_DICTIONARY(G__fmcDst
- ${fmcDst_h_files}
- LINKDEF fmcDst.LinkDef.h)
- #---Create a shared library of the class
- add_library(fmcDst SHARED
- ${fmcDst_cxx_files}
- G__fmcDst.cxx)
- target_link_libraries(fmcDst ${ROOT_LIBRARIES})
|