Revision 5393d92a9b879c81ba62325dc4fab4beed2bc039 authored by Philippe Canal on 29 April 2016, 22:04:34 UTC, committed by Philippe Canal on 29 April 2016, 22:14:01 UTC
1 parent e52b718
Raw File
CMakeLists.txt
############################################################################
# CMakeLists.txt file for building ROOT math/smatrix package
############################################################################

set(libname Smatrix)

ROOT_GENERATE_DICTIONARY(G__${libname}    Math/SMatrix.h     Math/SVector.h
                                          Math/SMatrixDfwd.h Math/SMatrixFfwd.h
                                          Math/SMatrix.h     Math/SVector.h
                                          Math/SMatrixDfwd.h Math/SMatrixFfwd.h
                                          MODULE ${libname}
                                          LINKDEF LinkDef.h OPTIONS "-writeEmptyRootPCM")

ROOT_GENERATE_DICTIONARY(G__${libname}32  Math/SMatrix.h     Math/SVector.h
                                          Math/SMatrixDfwd.h Math/SMatrixFfwd.h
                                          Math/SMatrix.h     Math/SVector.h
                                          Math/SMatrixDfwd.h Math/SMatrixFfwd.h
                                          MULTIDICT MODULE ${libname}
                                          LINKDEF LinkDefD32.h OPTIONS "-writeEmptyRootPCM")

ROOT_LINKER_LIBRARY(${libname} G__${libname}.cxx G__${libname}32.cxx LIBRARIES Core)
ROOT_INSTALL_HEADERS()

back to top