"README" did not exist on "2b8e0f210d330f2fa56d606609f9fb83be748a88"
Newer
Older
Markus Frank
committed
#==========================================================================
Markus Frank
committed
#--------------------------------------------------------------------------
# Copyright (C) Organisation europeenne pour la Recherche nucleaire (CERN)
Markus Frank
committed
# All rights reserved.
#
# For the licensing terms see $DD4hepINSTALL/LICENSE.
# For the list of contributors see $DD4hepINSTALL/doc/CREDITS.
#
#==========================================================================
SET_PROPERTY(DIRECTORY . PROPERTY PACKAGE_NAME DDEve)
Andre Sailer
committed
add_library(DDEve_Interface INTERFACE)
Andre Sailer
committed
add_library(DD4hep::DDEve_Interface ALIAS DDEve_Interface)
Andre Sailer
committed
target_include_directories(DDEve_Interface
INTERFACE
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
$<INSTALL_INTERFACE:include>
)
target_link_libraries(DDEve_Interface INTERFACE ROOT::Core ROOT::Rint ROOT::Eve ROOT::Gui ROOT::Graf3d ROOT::RGL ROOT::EG)
Andre Sailer
committed
dd4hep_add_dictionary(G__DDEve
SOURCES ../DDCore/include/ROOT/Warnings.h include/DDEve/*.h
EXCLUDE include/DDEve/Utilities.h
include/DDEve/ParticleActors.h
include/DDEve/HitActors.h
include/DDEve/Factories.h
LINKDEF ../DDCore/include/ROOT/LinkDef.h
Andre Sailer
committed
USES DD4hep::DDCore
Andre Sailer
committed
if(TARGET ROOT::ROOTEve)
dd4hep_print("Building the web display using ROOT7")
SET(DDEVE_ROOT7_SOURCES root7/WebDisplay.cpp)
SET(DDEVE_ROOT7_LINK ROOT::ROOTEve)
endif()
Andre Sailer
committed
SET(DDEVE_LCIO_SOURCES lcio/LCIOEventHandler.cpp)
Andre Sailer
committed
endif()
dd4hep_add_plugin(DDEvePlugins SOURCES src/*.cpp ${DDEVE_LCIO_SOURCES} ${DDEVE_ROOT7_SOURCES}
USES DD4hep::DDCore DD4hep::DDEve_Interface ${DDEVE_LCIO_LINK} ${DDEVE_ROOT7_LINK}
Andre Sailer
committed
)
if(DD4HEP_USE_GEANT4)
dd4hep_add_dictionary(G__DDG4IO
SOURCES ../DDCore/include/ROOT/Warnings.h DDEve/DDG4IO.C
LINKDEF ../DDCore/include/ROOT/LinkDef.h
Andre Sailer
committed
USES DD4hep::DDG4
Andre Sailer
committed
add_library(DDG4IO DDEve/IO.cpp G__DDG4IO.cxx)
Andre Sailer
committed
target_link_libraries(DDG4IO DD4hep::DDG4 DD4hep::DDEve_Interface)
set_target_properties(DDG4IO PROPERTIES VERSION ${DD4hep_VERSION} SOVERSION ${DD4hep_SOVERSION})
Andre Sailer
committed
install(TARGETS DDG4IO EXPORT DD4hep
LIBRARY DESTINATION lib
ARCHIVE DESTINATION lib
)
Andre Sailer
committed
add_executable(ddeve DDEve/DDEve.cpp)
target_link_libraries(ddeve DDEve_Interface)
Markus Frank
committed
set_target_properties(DDEvePlugins PROPERTIES VERSION ${DD4hep_VERSION} SOVERSION ${DD4hep_SOVERSION})
install(DIRECTORY DDEve DESTINATION examples )
install(DIRECTORY include/DDEve DESTINATION include)
install(TARGETS ddeve DDEvePlugins DDEve_Interface EXPORT DD4hep
Andre Sailer
committed
ARCHIVE DESTINATION lib
LIBRARY DESTINATION lib
RUNTIME DESTINATION bin
)