Skip to content
Snippets Groups Projects
Commit f96f51c0 authored by Marco Clemencic's avatar Marco Clemencic
Browse files

Merge branch 'ignoreBoostWarnings' into 'master'

Ignore some warnings coming from the Boost library

See merge request !354
parents 7db3da0d d0519ca3
No related branches found
No related tags found
1 merge request!354Ignore some warnings coming from the Boost library
Pipeline #
......@@ -11,8 +11,8 @@ if( NOT AIDA_FOUND )
return()
endif()
# Hide some TBB compile time warnings
include_directories(SYSTEM ${TBB_INCLUDE_DIRS})
# Hide some TBB and Boost compile time warnings
include_directories(SYSTEM ${Boost_INCLUDE_DIRS} ${TBB_INCLUDE_DIRS})
gaudi_add_module(GaudiMTTools *.cpp
LINK_LIBRARIES GaudiAlgLib Boost TBB
......
......@@ -31,9 +31,10 @@ if( AIDA_FOUND )
list( APPEND lib_sources src/Lib/HistoDecorator.cpp )
endif()
# Hide some ROOT compile time warnings
# Hide some ROOT and Boost compile time warnings
find_package(Boost)
find_package(ROOT)
include_directories( SYSTEM ${ROOT_INCLUDE_DIRS} )
include_directories( SYSTEM ${Boost_INCLUDE_DIRS} ${ROOT_INCLUDE_DIRS} )
if( CLHEP_FOUND )
include_directories( SYSTEM ${CLHEP_INCLUDE_DIRS} )
endif()
......
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