From 8351ef1f064e9cf5d7e248955e628a03d818fda8 Mon Sep 17 00:00:00 2001 From: Frank Gaede <frank.gaede@desy.de> Date: Thu, 28 Nov 2013 13:44:16 +0000 Subject: [PATCH] - made inclusion of Boost more cmake standard: -D DD4HEP_USE_BOOST -D BOOST_ROOT=_path_to_boost_ - client packages will automatically also use boost ( add_definition( DD4HEP_USE_BOOST )) --- DDG4/CMakeLists.txt | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/DDG4/CMakeLists.txt b/DDG4/CMakeLists.txt index 2cf712160..5ff739565 100644 --- a/DDG4/CMakeLists.txt +++ b/DDG4/CMakeLists.txt @@ -20,9 +20,16 @@ include_directories(${CMAKE_SOURCE_DIR}/DDCore/include #---Add Library------------------------------------------------------------------- if(DD4HEP_USE_BOOST) - list(APPEND include_directories ${BOOST_INCLUDE_DIR}) + #fg: canonical way of finding Boost w/ cmake uses + # -D Boost_DIR=_path_to_boost + # and then FindBoost.cmake sets the variable Boost_INCLUDE_DIR + FIND_PACKAGE( Boost REQUIRED) + include_directories( ${Boost_INCLUDE_DIR}) + #list(APPEND include_directories ${BOOST_INCLUDE_DIR}) file(GLOB sources src/*.cpp parsers/*.cpp) add_definitions(-DDD4HEP_USE_BOOST) +# MESSAGE( STATUS "Boost_INCLUDE_DIR = ${Boost_INCLUDE_DIR} ") +# MESSAGE( STATUS "include_directories= ${include_directories} ") else() file(GLOB sources src/*.cpp) endif() -- GitLab