Skip to content
Snippets Groups Projects

Fix compilation on Apple arm64

Merged Florian Uhlig requested to merge f.uhlig/cbmroot:fix_compilation_arm64 into master
2 files
+ 27
1
Compare changes
  • Side-by-side
  • Inline

Files

+ 5
1
@@ -64,7 +64,11 @@ target_link_libraries(KfCore
##### Offline version without the NO_ROOT in order to get standard logger! #############################################
if (NOT CBM_ONLINE_STANDALONE)
set(LIBRARY_NAME KfCoreOffline)
set(LINKDEF ${LIBRARY_NAME}LinkDef.h)
if (SSE_FOUND)
set(LINKDEF ${LIBRARY_NAME}LinkDef.h)
else()
set(LINKDEF ${LIBRARY_NAME}NoSSELinkDef.h)
endif()
list(APPEND HEADERS data/KfTrackParam.h
)
Loading