Skip to content
Snippets Groups Projects
Commit 9cad45f2 authored by Jakob Blomer's avatar Jakob Blomer Committed by Enrico Guiraud
Browse files

[DF] Don't link against SQlite libraries if not found

parent de8b82fa
No related branches found
No related tags found
No related merge requests found
...@@ -9,6 +9,7 @@ endif() ...@@ -9,6 +9,7 @@ endif()
if (sqlite) if (sqlite)
include_directories(${SQLITE_INCLUDE_DIR}) include_directories(${SQLITE_INCLUDE_DIR})
set (DATAFRAME_SQLITE_LIBRARIES ${SQLITE_LIBRARIES})
endif() endif()
ROOT_GLOB_HEADERS(dictHeaders inc/*.h inc/ROOT/*.hxx) ROOT_GLOB_HEADERS(dictHeaders inc/*.h inc/ROOT/*.hxx)
...@@ -35,7 +36,7 @@ ROOT_STANDARD_LIBRARY_PACKAGE(ROOTDataFrame ...@@ -35,7 +36,7 @@ ROOT_STANDARD_LIBRARY_PACKAGE(ROOTDataFrame
HEADERS ${dictHeaders} HEADERS ${dictHeaders}
SOURCES ${sources} SOURCES ${sources}
DICTIONARY_OPTIONS "-writeEmptyRootPCM" DICTIONARY_OPTIONS "-writeEmptyRootPCM"
LIBRARIES ${TBB_LIBRARIES} ${ARROW_SHARED_LIB} ${SQLITE_LIBRARIES} LIBRARIES ${TBB_LIBRARIES} ${ARROW_SHARED_LIB} ${DATAFRAME_SQLITE_LIBRARIES}
DEPENDENCIES Tree TreePlayer Hist RIO ROOTVecOps Imt DEPENDENCIES Tree TreePlayer Hist RIO ROOTVecOps Imt
${TREEPLAYER_DEPENDENCIES}) ${TREEPLAYER_DEPENDENCIES})
......
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