Skip to content
Snippets Groups Projects
Commit ff4d0028 authored by Pierre-Alain Loizeau's avatar Pierre-Alain Loizeau Committed by Pierre-Alain Loizeau
Browse files

Fixes to dependencies on CbmYamlInterface and related include folders definition

- Declare CbmYamlInterface as INTERFACE dependency where needed (instead of PRIVATE/PUBLIC if already in)
- Add include folders for algo/yaml and algo/qa where needed
- Replace all occurences of CBMROOT_SOURCE_DIR in include folders definition with CMAKE_SOURCE_DIR
parent d8fd3803
No related branches found
No related tags found
1 merge request!2057Try to fix online-offline yaml include conflict in installed version
......@@ -217,7 +217,6 @@ target_include_directories(Algo
target_link_libraries(Algo
PUBLIC OnlineData
CbmYamlInterface
KfCore
CaCore
ROOT::GenVector
......@@ -234,7 +233,8 @@ target_link_libraries(Algo
external::fles_monitoring
cppzmq
poolstl
PRIVATE CbmKFParticleOnlineInterface
PRIVATE CbmKFParticleOnlineInterface
INTERFACE CbmYamlInterface
)
target_compile_definitions(Algo PUBLIC NO_ROOT)
xpu_attach(Algo ${DEVICE_SRCS})
......@@ -294,7 +294,6 @@ if (NOT CBM_ONLINE_STANDALONE)
target_link_libraries(AlgoOffline
PUBLIC CbmData
CbmYamlInterface
KfCoreOffline
CaCoreOffline
ROOT::GenVector
......@@ -311,7 +310,8 @@ if (NOT CBM_ONLINE_STANDALONE)
external::fles_monitoring
cppzmq
poolstl
PRIVATE CbmKFParticleOnlineInterface
PRIVATE CbmKFParticleOnlineInterface
INTERFACE CbmYamlInterface
)
xpu_attach(AlgoOffline ${DEVICE_SRCS})
......
......@@ -2,6 +2,7 @@ set(INCLUDE_DIRECTORIES
${CMAKE_CURRENT_SOURCE_DIR}/checker
${CMAKE_CURRENT_SOURCE_DIR}/report
${CMAKE_CURRENT_SOURCE_DIR}
${CMAKE_SOURCE_DIR}/algo/base # For "algo/base/yaml/*.h" included as relative "yaml/?????.h" to fit install tree
)
set(SRCS
......@@ -63,6 +64,7 @@ set(PRIVATE_DEPENDENCIES
set(INTERFACE_DEPENDENCIES
ROOT::Graf
CbmYamlInterface
)
generate_cbm_library()
......
......@@ -6,6 +6,7 @@ set(INCLUDE_DIRECTORIES
${CMAKE_CURRENT_SOURCE_DIR}
${CMAKE_CURRENT_SOURCE_DIR}/Interface
${CMAKE_CURRENT_SOURCE_DIR}/KFQA
${CMAKE_SOURCE_DIR}/algo/base # For "algo/base/yaml/*.h" included as relative "yaml/?????.h" to fit install tree
)
set(SRCS
......@@ -43,11 +44,11 @@ EndIf()
IF (SSE_FOUND)
Message(STATUS "KFParticleInterface will be compiled with SSE support")
ADD_DEFINITIONS(-DHAVE_SSE)
SET_SOURCE_FILES_PROPERTIES(${SRCS} PROPERTIES COMPILE_FLAGS
SET_SOURCE_FILES_PROPERTIES(${SRCS} PROPERTIES COMPILE_FLAGS
"-msse -O3")
ELSE (SSE_FOUND)
MESSAGE(STATUS "KFParticleInterface will be compiled without SSE support")
SET_SOURCE_FILES_PROPERTIES(${SRCS} PROPERTIES COMPILE_FLAGS
SET_SOURCE_FILES_PROPERTIES(${SRCS} PROPERTIES COMPILE_FLAGS
"-O3")
ENDIF (SSE_FOUND)
......@@ -57,7 +58,7 @@ set(LINKDEF ${LIBRARY_NAME}LinkDef.h)
set(PUBLIC_DEPENDENCIES
CbmData
KF
FairRoot::Base
FairRoot::Base
ROOT::Core
ROOT::Hist
)
......@@ -76,6 +77,7 @@ set(PRIVATE_DEPENDENCIES
set(INTERFACE_DEPENDENCIES
CbmRecoBase
CbmYamlInterface
)
Set(DEFINITIONS -DDO_TPCCATRACKER_EFF_PERFORMANCE -DNonhomogeneousField -DCBM -DUSE_TIMERS)
......
......@@ -16,6 +16,7 @@ set(INCLUDE_DIRECTORIES
${CMAKE_CURRENT_SOURCE_DIR}/L1Algo/utils
${CMAKE_CURRENT_SOURCE_DIR}/catools
${CMAKE_CURRENT_SOURCE_DIR}/utils
${CMAKE_SOURCE_DIR}/algo/base # For "algo/base/yaml/*.h" included as relative "yaml/?????.h" to fit install tree
)
......@@ -174,6 +175,10 @@ set(PRIVATE_DEPENDENCIES
ROOT::RIO
)
set(INTERFACE_DEPENDENCIES
CbmYamlInterface
)
generate_cbm_library()
add_dependencies(G__L1 KFPARTICLE)
......
set(INCLUDE_DIRECTORIES
${CBMROOT_SOURCE_DIR}/fles/flestools
${CMAKE_CURRENT_SOURCE_DIR}
${CMAKE_CURRENT_SOURCE_DIR}/unpack
${CMAKE_SOURCE_DIR}/fles/flestools
)
......
......@@ -3,7 +3,8 @@
set(INCLUDE_DIRECTORIES
${CMAKE_CURRENT_SOURCE_DIR}
${CBMROOT_SOURCE_DIR}
${CMAKE_SOURCE_DIR}/algo # For "algo/qa/*.h" included as relative "qa/?????.h" to fit install tree
${CMAKE_SOURCE_DIR}/algo/base # For "algo/base/yaml/*.h" included as relative "yaml/?????.h" to fit install tree
)
set(SRCS
......@@ -58,6 +59,7 @@ set(PRIVATE_DEPENDENCIES
set(INTERFACE_DEPENDENCIES
external::fles_ipc
CbmYamlInterface
)
generate_cbm_library()
......@@ -5,7 +5,7 @@
#include "CbmTaskDigiEventQa.h"
#include "CbmReco.h" // for CbmRecoConfig
#include "algo/qa/Histo1D.h"
#include "qa/Histo1D.h"
#include <FairRunOnline.h>
#include <Logger.h>
......
set(INCLUDE_DIRECTORIES
${CMAKE_CURRENT_SOURCE_DIR}
${CBMROOT_SOURCE_DIR}/core/config
${CMAKE_SOURCE_DIR}/core/config
)
set(SRCS
......
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