Skip to content
Snippets Groups Projects
Commit f57129de authored by Pere Mato Vila's avatar Pere Mato Vila
Browse files

Fix for ROOT-6208

parent 9eae007b
No related branches found
No related tags found
No related merge requests found
# Find the Pythia8 includes and library. # Find the Pythia8 includes and library.
# #
# This module defines # This module defines
# PYTHIA8_INCLUDE_DIR, where to locate Pythia.h file # PYTHIA8_INCLUDE_DIR where to locate Pythia.h file
# PYTHIA8_LIBRARIES, the libraries to link against to use Pythia6 # PYTHIA8_LIBRARY where to find the libpythia8 library
# PYTHIA8_FOUND. If false, you cannot build anything that requires Pythia6. # PYTHIA8_<lib>_LIBRARY Addicional libraries
# PYTHIA8_LIBRARY, where to find the libpythia8 library. # PYTHIA8_LIBRARIES (not cached) the libraries to link against to use Pythia8
# PYTHIA8_FOUND if false, you cannot build anything that requires Pythia8
set(PYTHIA8_FOUND 0) # PYTHIA8_VERSION version of Pythia8 if found
find_path(PYTHIA8_INCLUDE_DIR Pythia.h set(_pythia8dirs ${PYTHIA8_DIR} $ENV{PYTHIA8_DIR} /usr /opt/pythia8)
$ENV{PYTHIA8_DIR}/include
/opt/pythia8/include find_path(PYTHIA8_INCLUDE_DIR
/usr/local/include NAMES Pythia.h Pythia8/Pythia.h
/usr/include PATHS ${_pythia8dirs}
/usr/include/pythia PATH_SUFFIXES include
DOC "Specify the directory containing Pythia.h." DOC "Specify the directory containing Pythia.h.")
)
find_library(PYTHIA8_LIBRARY
find_library(PYTHIA8_LIBRARY NAMES Pythia8 pythia8 PATHS NAMES pythia8 Pythia8
$ENV{PYTHIA8_DIR}/lib PATHS ${_pythia8dirs}
/opt/pythia8/lib PATH_SUFFIXES lib
/usr/local/lib DOC "Specify the Pythia8 library here.")
/usr/lib
DOC "Specify the Pythia8 library here." find_library(PYTHIA8_hepmcinterface_LIBRARY
) NAMES hepmcinterface pythia8tohepmc
PATHS ${_pythia8dirs}
if(PYTHIA8_INCLUDE_DIR AND PYTHIA8_LIBRARY) PATH_SUFFIXES lib)
set(PYTHIA8_FOUND 1 )
message(STATUS "Found Pythia8 library at ${PYTHIA8_LIBRARY}")
endif()
find_library(PYTHIA8_lhapdfdummy_LIBRARY
NAMES lhapdfdummy
PATHS ${_pythia8dirs}
PATH_SUFFIXES lib)
set(PYTHIA8_LIBRARIES ${PYTHIA8_LIBRARY}) foreach(_lib PYTHIA8_LIBRARY PYTHIA8_hepmcinterface_LIBRARY PYTHIA8_lhapdfdummy_LIBRARY)
if(${_lib})
set(PYTHIA8_LIBRARIES ${PYTHIA8_LIBRARIES} ${${_lib}})
endif()
endforeach()
# handle the QUIETLY and REQUIRED arguments and set PYTHIA8_FOUND to TRUE if
# all listed variables are TRUE
include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(Pythia8 DEFAULT_MSG PYTHIA8_INCLUDE_DIR PYTHIA8_LIBRARY)
mark_as_advanced(PYTHIA8_INCLUDE_DIR PYTHIA8_LIBRARY PYTHIA8_hepmcinterface_LIBRARY PYTHIA8_lhapdfdummy_LIBRARY)
if(PYTHIA8_FOUND)
file(READ ${PYTHIA8_INCLUDE_DIR}/../xmldoc/Version.xml versionstr)
string(REGEX REPLACE ".*Pythia:versionNumber.*default.*[0-9][.]([0-9]+).*" "\\1" PYTHIA8_VERSION "${versionstr}")
endif()
MARK_AS_ADVANCED( PYTHIA8_FOUND PYTHIA8_LIBRARY PYTHIA8_INCLUDE_DIR)
...@@ -7,7 +7,7 @@ ROOT_USE_PACKAGE(montecarlo/eg) ...@@ -7,7 +7,7 @@ ROOT_USE_PACKAGE(montecarlo/eg)
ROOT_USE_PACKAGE(math/physics) ROOT_USE_PACKAGE(math/physics)
include_directories(${PYTHIA8_INCLUDE_DIR}) include_directories(${PYTHIA8_INCLUDE_DIR})
ROOT_GENERATE_DICTIONARY(G__Pythia8 *.h module EGPythia8 LINKDEF LinkDef.h) ROOT_GENERATE_DICTIONARY(G__Pythia8 *.h MODULE EGPythia8 LINKDEF LinkDef.h)
ROOT_LINKER_LIBRARY(EGPythia8 *.cxx G__Pythia8.cxx LIBRARIES Core ${PYTHIA8_LIBRARIES} DEPENDENCIES EG Graf VMC Physics) ROOT_LINKER_LIBRARY(EGPythia8 *.cxx G__Pythia8.cxx LIBRARIES Core ${PYTHIA8_LIBRARIES} DEPENDENCIES EG Graf VMC Physics)
ROOT_INSTALL_HEADERS() ROOT_INSTALL_HEADERS()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment