Skip to content
Snippets Groups Projects
Commit e675163f authored by Attila Krasznahorkay's avatar Attila Krasznahorkay
Browse files

Updated all LCG based projects to set up libpng into the runtime environment, to make

ROOT work correctly.
parent 3332d42a
No related branches found
No related tags found
1 merge request!20779WIP: Migrate DataQualityTools to ToolHandles
...@@ -30,9 +30,10 @@ set( LCG_VERSION_NUMBER 91 ...@@ -30,9 +30,10 @@ set( LCG_VERSION_NUMBER 91
CACHE STRING "Version number for the LCG release to use" ) CACHE STRING "Version number for the LCG release to use" )
find_package( LCG ${LCG_VERSION_NUMBER} EXACT REQUIRED ) find_package( LCG ${LCG_VERSION_NUMBER} EXACT REQUIRED )
#find_package( ROOT ) # External(s) needed at runtime:
find_package( Xrootd ) find_package( Xrootd )
find_package( GSL ) find_package( GSL )
find_package( PNG )
# Make CMake find the project specific code we have here: # Make CMake find the project specific code we have here:
list( INSERT CMAKE_MODULE_PATH 0 ${CMAKE_SOURCE_DIR}/modules ) list( INSERT CMAKE_MODULE_PATH 0 ${CMAKE_SOURCE_DIR}/modules )
......
...@@ -16,7 +16,10 @@ find_package( AtlasCMake QUIET ) ...@@ -16,7 +16,10 @@ find_package( AtlasCMake QUIET )
# Find the base project(s): # Find the base project(s):
find_package( AthSimulationExternals REQUIRED ) find_package( AthSimulationExternals REQUIRED )
find_package( Gaudi REQUIRED ) find_package( Gaudi REQUIRED )
# External(s) needed at runtime:
find_package( Frontier_Client ) find_package( Frontier_Client )
find_package( PNG )
# Temporarily setting additional compile flags here: # Temporarily setting additional compile flags here:
add_definitions( -DSIMULATIONBASE ) add_definitions( -DSIMULATIONBASE )
......
...@@ -45,6 +45,7 @@ find_package( Gaudi REQUIRED ) ...@@ -45,6 +45,7 @@ find_package( Gaudi REQUIRED )
# Find some auxiliary packages: # Find some auxiliary packages:
find_package( Doxygen ) find_package( Doxygen )
find_package( PNG )
# Load all the files from the externals/ subdirectory: # Load all the files from the externals/ subdirectory:
file( GLOB _externals "${CMAKE_CURRENT_SOURCE_DIR}/externals/*.cmake" ) file( GLOB _externals "${CMAKE_CURRENT_SOURCE_DIR}/externals/*.cmake" )
......
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